home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / LA / LA005.ZIP / OVL312.ARC / BNEST3.BAS < prev    next >
BASIC Source File  |  1988-08-08  |  99b  |  7 lines

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