I never tried to add arrays before, assuming it would just give a syntax error. Strangely, it does not. Not that it seems to do anything at all.
Should this syntax do anything, or was my initial guess correct?
I find it weird it's not a syntax error, if I'm not supposed to do that.
SuperStrict Local x:Int[] = [1,2] Local y:Int[] = [2,-1] x:+y '??? Print x[0]+","+x[1] 'Prints "1,2"
Should this syntax do anything, or was my initial guess correct?
I find it weird it's not a syntax error, if I'm not supposed to do that.