Difference between revisions of "AMOSi:While"

From Amiga Coding
Jump to: navigation, search
m (1 revision(s))
 
(Extracted from the AMOSPro V2.00 helpfile)
(No difference)

Revision as of 02:45, 17 November 2007

an example can be found on AMOSPro_Examples:Examples/H-1/Help_12.AMOS


Marks the beginning of a loop used to repeat a section of your program WHILE a condition remains true. If the condition does not result in a value of -1 for "true", then the loop will be stopped, and the program will go on to the next instruction.


While condition
        list of statements
Wend