mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-14 01:18:13 -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
|