mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
12 lines
118 B
Plaintext
Vendored
12 lines
118 B
Plaintext
Vendored
>>> val x = 1
|
|
>>> x = 2
|
|
error: val cannot be reassigned
|
|
x = 2
|
|
^
|
|
>>> x++
|
|
error: val cannot be reassigned
|
|
x++
|
|
^
|
|
>>> x
|
|
1
|