-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbench_concat.rb
21 lines (18 loc) · 914 Bytes
/
bench_concat.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'benchmark'
amount = 100000
times = 100
Benchmark.bmbm do |bm|
bm.report("CONCAT") do
str = "012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"
j = 0
while (j < times)
i = 0
new_str = ""
while (i < amount)
new_str.concat(str)
i += 1
end
j += 1
end
end
end