home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
octave-1.1.1p1-src.tgz
/
tar.out
/
fsf
/
octave
/
test
/
octave.test
/
while
/
while-5.m
< prev
next >
Wrap
Text File
|
1996-09-28
|
102b
|
9 lines
i = 0;
while (++i < 5)
if (i < 3)
continue;
endif
printf ("%d", i);
endwhile
printf ("\n");