--- MacRuby/trunk/perf/perf_masgn.rb (rev 0)
+++ MacRuby/trunk/perf/perf_masgn.rb 2010-08-27 19:59:55 UTC (rev 4474)
@@ -0,0 +1,16 @@
+perf_test('symetric') do
+ i = 0
+ x = 1
+ y = 2
+ while i < 200000
+ x, y = y, x
+ y, x = x, y
+ x, y = y, x
+ y, x = x, y
+ x, y = y, x
+ y, x = x, y
+ x, y = y, x
+ y, x = x, y
+ i += 1
+ end
+end