shiika
shiika copied to clipboard
Disallow constant reassign
eg.
A = 1
A = 2 # should be error
Not that this is legal:
if foo
A = 1
else
A = 2
end