* io.c (rb_open_file): encoding in mode string was ignored if perm is
[ruby-svn.git] / benchmark / bm_vm1_simplereturn.rb
blobc843ee3d97ff9a01260fa6cf7c5be0e6bc8dd0fd
1 def m
2   return 1
3 end
4 i=0
5 while i<30000000 # while loop 1
6   i+=1
7   m
8 end