# calculate Fibonacci(20) # for benchmark def fib(n) if n<2 n else fib(n-2)+fib(n-1) end end print(fib(20), "\n"); ' title='Atom feed' href='https://git.ruby-lang.org/ruby.git/atom/benchmark/vm_dstr_obj.rb?h=master' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
path: root/benchmark/vm_dstr_obj.rb
AgeCommit message (Expand)Author
2021-11-18Optimize dynamic string interpolation for symbol/true/false/nil/0-9Jeremy Evans