home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
assemblr
/
library
/
overlay
/
bnest1.bas
next >
Wrap
BASIC Source File
|
1989-01-05
|
99b
|
7 lines
sub nest1(i) static
print:print"in nest1";i;
for j=0 to 1
call nest2(j)
next j
end sub