Main

Syntax:

Main()

Description:

Every task step has a primary (main) function that must be named main. The main function serves as the starting point for program execution. It usually controls execution by directing the calls to other functions. In fact, main is the only function called automatically, and the code in any other function is only executed if its function is called from main (directly or indirectly).

Parameters:

None

Example:


Sub Main


See Also:

Main | OnStepEnd | OnStepError | OnStepStart | OnTaskEnd | OnTaskFailure | OnTaskStart |