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> is the name of the subroutine to call.
- <ARGUMENTS> are the comma-separated values to pass into the subroutine.
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.