FUNCTION AT(BYVAL row AS INTEGER, BYVAL col AS INTEGER) AS STRING
LOCATE row, col
END FUNCTION
Print AT(20,2);"THE CODE"
is the same as
Locate 20,2: Print "THE CODE"
The above code is a shortcut to the Locate x,y
rint "Hello"
However the resulting EXE is larger using this method.
My program is out of memory and I need to reduce the size, is there any way to streamline the above method ?
LOCATE row, col
END FUNCTION
Print AT(20,2);"THE CODE"
is the same as
Locate 20,2: Print "THE CODE"
The above code is a shortcut to the Locate x,y

However the resulting EXE is larger using this method.
My program is out of memory and I need to reduce the size, is there any way to streamline the above method ?
Comment