home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 February / PCWK0296.iso / dema / microcom / terminal / loop.ms_ / loop.ms
Encoding:
Text File  |  1994-07-04  |  205 b   |  15 lines

  1. mprint "hey there"
  2. AGAIN:
  3. pause 2
  4. for i = 1 to 100
  5.   if i % 2 = 0 then
  6.     mprint "Record #"+i
  7.   else
  8.     mprint "Recorda #"+string(i)
  9.   endif
  10.   sleep 1
  11. next
  12. GOTO Again
  13. mprint "all done"
  14. end
  15.