home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / asmutil / ovl301.zip / BNEST1.BAS next >
BASIC Source File  |  1989-01-06  |  99b  |  7 lines

  1. sub nest1(i) static
  2.     print:print"in nest1";i;
  3.     for j=0 to 1
  4.         call nest2(j)
  5.     next j
  6. end sub
  7.