or
[parameter(s)]
Activates a BlueZone Basic subroutine called name or a DLL function with the name name. The first parameter is the name of
the function or subroutine to call, and the second is the list of arguments to pass to the called function or subroutine.
You are never required to use the Call statement when calling a BlueZone Basic subroutine or a DLL function. Parentheses must be used in the argument list if the
Call statement is being used.
Example
Sub Main()
Call Beep
MsgBox "Returns a Beep"
End Sub