Subroutine Call Statement

Subroutines are procedures that do not return a value (as opposed to functions which do). They perform actions.
CreateDirectory is an example of a built-in subroutine. You can define your own subroutines as well.

Syntax

<NAME>
<NAME> <ARGUMENTS>
This syntax is similar to function calls, except that no parentheses are needed around the argument list.

Usage

The following example calls the built-in CreateDirectory subroutine.
CreateDirectory "my_dir"