mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-10 15:38:09 -05:00
10 lines
164 B
Ruby
Executable File
10 lines
164 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
require 'benchmark/ips'
|
|
|
|
url = "https://jekyllrb.com"
|
|
|
|
Benchmark.ips do |x|
|
|
x.report('+=') { url += '/' }
|
|
x.report('<<') { url << '/' }
|
|
end
|