Difference between revisions of "MC-Basic:PROGRAM ... END PROGRAM"
m (Miborich moved page Axystems:MC-Basic:PROGRAM ... END PROGRAM to MC-Basic:PROGRAM ... END PROGRAM: Global renaming of Axystems: namespace into (Main):) |
|||
Line 52: | Line 52: | ||
|SEE ALSO= | |SEE ALSO= | ||
* [[Axystems:MC-Basic:DIM SHARED ... AS LONG or DOUBLE or STRING|DIM SHARED ... AS LONG or DOUBLE or STRING]] | * [[Axystems:MC-Basic:DIM SHARED ... AS LONG or DOUBLE or STRING|DIM SHARED ... AS LONG or DOUBLE or STRING]] | ||
− | * [[ | + | * [[MC-Basic:SUB ... END SUB|SUB ... END SUB]] |
* [[MC-Basic:FUNCTION ... END FUNCTION|FUNCTION ... END FUNCTION]] | * [[MC-Basic:FUNCTION ... END FUNCTION|FUNCTION ... END FUNCTION]] | ||
}} | }} |
Revision as of 08:41, 22 May 2014
The PROGRAM…END PROGRAM keywords are used to delimit the main section of code in a task. Task variables, defined using DIM SHARED, must appear before the Program keyword. Local variables (defined using DIM alone), appear after the Program keyword, but before the code. Subprograms must appear after the End Program keywords.
When a program is loaded into memory (using the LOAD command), it does not start executing until the STARTTASK command is executed. By adding the Continue keyword to the Program keyword, the program automatically starts executing after it is loaded.
When a task reaches End Program, it stops running, but remains loaded in memory. End Program may be replaced by Terminate Program. In this case, the task is automatically unloaded from memory when it finishes.
Syntax
Program
<code to execute>
End Program
Availability
All versions
Scope
Task, Multi-line commands via entry station
Examples
Dim Shared var1 as Long Program Dim I As Long for I = 1 to 10 var1 = var1 + 1 Next I End Program