home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Education Master 1994 (4th Edition)
/
EDUCATIONS_MASTER_4TH_EDITION.bin
/
files
/
progmisc
/
ovl312
/
ovl312.arc
/
BNEST1.BAS
next >
Wrap
BASIC Source File
|
1989-01-06
|
99b
|
7 lines
sub nest1(i) static
print:print"in nest1";i;
for j=0 to 1
call nest2(j)
next j
end sub