Sha256: ca87d5981b302fa1bbcd7befeb15b902ea993386b4d1feddee7cf917c5e25799
Contents?: true
Size: 195 Bytes
Versions: 26
Compression:
Stored size: 195 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true require 'benchmark/ips' url = 'https://jekyllrb.com' Benchmark.ips do |x| x.report('+=') { url += '/' } x.report('<<') { url << '/' } end
Version data entries
26 entries across 26 versions & 1 rubygems