Specifications

Chapter 14. Statement Reference
324
Run-time errors:
Reference:
Statements: DECLARE
Example:
File 1 File 2
DECLARE SUB add(x,y) SUB add(X,Y)
A=1:B=2 PRINT X+Y
PRINT "TEST" END SUB
CALL add(A,B)
.
.
.
Error code Meaning
07h
Insufficient memory space
(You nested
SUB statements to more than 10 levels.)
0Fh
String length out of the range
(The returned value of the string length exceeds the allowable
range.)
TEST
3