blob: d3c50413738175d6228a2dd3b97e038ea7f4465c [file]
>>> val x = 1
>>> x = 2
error: val cannot be reassigned
x = 2
^
>>> x++
error: val cannot be reassigned
x++
^
>>> x
1