home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 19 / AACD19.BIN / AACD / Programming / YAEC / testsrc / for.e < prev    next >
Encoding:
Text File  |  2001-02-23  |  146 b   |  10 lines

  1. PROC main()
  2.    DEF a, b, c
  3.    FOR a := 0 TO 500
  4.       FOR b := 0 TO 1000
  5.          FOR c := 0 TO 50
  6.          ENDFOR
  7.       ENDFOR
  8.    ENDFOR
  9. ENDPROC
  10.