Specifications

Chapter 14. Statement Reference
218
Example:
File 1 File 2
DECLARE FUNCTION add(x,y) FUNCTION add(X,Y)
A=1:B=2 add=X+Y
PRINT "TEST" END FUNCTION
C=add(A,B)
PRINT C
.
.
.
Reference:
Statements: DECLARE
TEST
3