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

5 lines
46 B
Plaintext
Raw Normal View History

mut a := 10 a++ a++ a++ a--
2020-01-07 14:26:49 +03:00
a
===output===
12