A++?

BlitzMax Forums/BlitzMax Programming/A++?

D4NM4N(Posted 2007) [#1]
Whats the max equivalent of a++ (a=a+1)?

I know its a lame question, but i know its there, just cant find any examles


Garred(Posted 2007) [#2]
a :+ 1


N(Posted 2007) [#3]
A :+ 1

Or, if used like call( a++, b, c ) it would be
call( a, b, c )
a :+ 1

Learn C++, dang it.


D4NM4N(Posted 2007) [#4]
lol thanks.