FUNCTION

These commands will declare a user defined function within your program.

  Syntax
FUNCTION FunctionName(Function Parameters)
  Parameters
FunctionName(Function Parameters
Value
Enter the appropriate value here.

  Returns

This command does not return a value.

  Description

User functions work in the same way normal commands work. They can accept multiple parameters and return values in the same manner, allowing you to create customized commands within your program.

  Example Code
myfunc()
WAIT KEY
END
FUNCTION myfunc()
PRINT "inside function"
ENDFUNCTION
  See also

CORE Commands Menu
Index