5 lines
122 B
Markdown
5 lines
122 B
Markdown
y++, use then increment (post)
|
|
++y, increment then use (pre)
|
|
y--, use then decrement (post)
|
|
--y, decrement then use (pre)
|