home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume2 / basic / part4 / bstest / tfor.bs < prev    next >
Encoding:
Text File  |  1986-11-30  |  130 b   |  9 lines

  1. 5 for j% = 1 to 10
  2. 7 print itoa(j%);"    ";
  3. 10 for i% = 1 to 10
  4. 20 print itoa(i%);"   ";
  5. 30 next i%
  6. 32 print ""
  7. 35 next j%
  8. 50 end
  9.