koto-lang/koto

`+=` and other assignment operations broken in the REPL

irh opened this issue · 0 comments

irh commented

The result of operations like += isn't assigned correctly for numbers in the REPL.

» x = 1
➝ 1

» x += 1
➝ 2

» x
➝ 1