mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-13 00:48:19 -05:00
9 lines
143 B
Plaintext
9 lines
143 B
Plaintext
require 'benchmark/ips'
|
|
|
|
url = "http://jekyllrb.com"
|
|
|
|
Benchmark.ips do |x|
|
|
x.report('+=') { url += '/' }
|
|
x.report('<<') { url << '/' }
|
|
end
|