Comment on Monday SOTD Thread - December 30th, 2024 (#569)
snooting@sub.wetshaving.social 3 weeks ago++
and –
are increment and decrement short-hand operators in C-style programming languages.
In other words, they either mean add 1 to this value (++
), or subtract 1 from this value (–
).
DaveWave94@sub.wetshaving.social 3 weeks ago
Thanks! I think that makes perfect sense.