home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ob140os2.zip / LARGDEMO.B < prev    next >
Text File  |  1997-09-12  |  146b  |  10 lines

  1. * This shows an array with more than 64k diminision
  2.  
  3.  DIM X(100000) AS BYTE
  4.  DIM I AS LONG
  5.  
  6.  FOR I=1 TO 100000
  7.         X(I)=I*100
  8.  NEXT
  9.  
  10.