Call Instruction
Syntax:
Call name[(arglist)]
-or-
name [arglist]
Group:
Flow Control
Description:
Evaluate the arglist and call subroutine (or
function) name with those values. Sub (or function)
name must be previously defined by either a
Sub (or Function)
definition. If name is a function then the
result is discarded. If Call is omitted then name
must be a subroutine and the arglist is not
enclosed in parens.
See
Also: Declare, Sub.
Example:
Sub Show(Title$,Value)
Debug.Print Title$;"=";Value
End Sub
Sub Main
Call Show("2000/9",2000/9) ' 222.2222222222
Show "1<2",1<2 'True
End Sub