summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm2_regexp.rb
blob: 428099e55ac11e452f03cfc3010c810598e3a816 (plain)
1
2
3
4
5
6
i=0
str = 'xxxhogexxx'
while i<6_000_000 # benchmark loop 2
  /hoge/ =~ str
  i+=1
end