1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

post increment/decrement repl fix

This commit is contained in:
Shivanjan Chakravorty
2020-01-07 16:56:49 +05:30
committed by Alexander Medvednikov
parent 706c6066d5
commit a0c8ad7398
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,11 @@
mut a := 2
a++
a
println(a)
println(a++)
a
===output===
3
3
3
3