add rewriting of operator assignment
foo += 1 becomes foo = foo + 1 in vool
This commit is contained in:
@ -14,7 +14,7 @@ module Rubyx
|
||||
result = a + b
|
||||
a = b
|
||||
b = result
|
||||
i+= 1
|
||||
i += 1
|
||||
end
|
||||
return result
|
||||
end
|
||||
|
Reference in New Issue
Block a user