sibanu_web/public/assets/vendor/jekyll/benchmark/string-concat
2022-08-20 13:21:23 +07:00

9 lines
143 B
Plaintext

require 'benchmark/ips'
url = "http://jekyllrb.com"
Benchmark.ips do |x|
x.report('+=') { url += '/' }
x.report('<<') { url << '/' }
end