Is it possible to add the ++ or -- convention for incrementing and decrementing variables? Or does one already exist that I'm not aware of. I'm sure implementing it wouldn't be that hard but i'm having trouble deciphering the source code. Thanks!!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is it possible to add the ++ or -- convention for incrementing and decrementing variables? Or does one already exist that I'm not aware of. I'm sure implementing it wouldn't be that hard but i'm having trouble deciphering the source code. Thanks!!
Done! (http://gcbasic.sourceforge.net/newfiles/update.zip)
Note that unlike C, this syntax will NOT work as expected:
SomeArray(SomeElement ++) = SomeValue
This would have to be written as:
SomeArray(SomeElement) = SomeValue
SomeElement ++
Thanks that was fast!