* transcode.c (trans_open_i): check the result of rb_transcoding_open.
[ruby-svn.git] / benchmark / bm_vm1_swap.rb
bloba565b6f6dc7aff7b41463cc0f5e390ab59cc7f1e
1 a = 1
2 b = 2
3 i=0
4 while i<30000000 # while loop 1
5   i+=1
6   a, b = b, a
7 end