home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l074 / 1.ddi / EXES.TRU < prev    next >
Encoding:
Text File  |  1984-12-19  |  146 b   |  13 lines

  1. ! Print pattern of x's.
  2. !
  3. FOR row = 1 to 6
  4.  
  5.       FOR xcount = 1 to row
  6.          PRINT "x";
  7.       NEXT xcount
  8.  
  9.  
  10.    PRINT
  11. NEXT row
  12. END
  13.