Here's an odd one, it seems that the first array used following an operator statement as below is generating non dimensioned array error at the word "Point", possibly seeing it as a variable rather than command :-
Dim TX(88) Dim TY(88) For N=1 to 88 If Point(TX(N)+15,TY(N)+13)<10 and Point(TX(N)+15,TY(N)+13)<>Point(((TX(N)-14)/15)*8+216,((TY(N)-22)/26)*14+77) GO=0 End if Next N
Compiling c:/Users/baldw/Documents/AOZ Studio Applications/applications/Test, emulation: PC, speed: fast.
First pass...
main.aoz:4:44: error: non dimensionned array (This is the 't' of the second 'Point' in the statement)
main.aoz:4:44: warning: variable used without been declared
Task failed, no code generated...
This one is already corrected in the next version. Bug problems in the expression evaluation that necessitated a complete rewrite of the code... :|