Flow of Control

ASB program execution starts at the first executable statement in the program as defined by the source code. This is unlike some languages, such as C, which start executing at a specially named routine. The flow proceeds forward, or as directed by explicit control statements, until it hits an explicit END or CHAIN statement or simply comes to the end of the program.

User defined functions and procedures, however, are ignored except when explicitly called. In other words, the program will never "fall into" a function or procedure merely by virtue of its position. This is not true of GOSUB or error trap routines, which are not automatically protected from being fallen into.

Note that MAP statements are considered executable, so the program needs to flow through them in order for them to get properly initialized.

See Also

•   ++INCLUDE

•   ++PRAGMA PRIVATE_BEGIN and _END