Skip to content
Craig Edwards edited this page Apr 28, 2023 · 3 revisions

DEF

DEF FN name(variable-name,...)
DEF PROC name(variable-name,...)

Define a new function or procedure. The parameter list is optional. A function is ended by starting a line with an = symbol, to indicate the return value, whereas a procedure returns no value, and its end is indicated by the RETURN statement.

Clone this wiki locally