home *** CD-ROM | disk | FTP | other *** search
- ;
- ; This example illustrates the different uses of the While statement
- ;
-
- Int A, B
-
- ; Simple While statement
- A = 0
- While (A < 10) Inc A
-
- ; Complex while statement
- A = 0
- While (A < 10) Do
- Print A
- Inc A
- EndWhile
-
- ; Chained simple While statements
- A = 0
- While (A <> 0) While (B <> 0) Inc B
-
-
-