home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
compcomp
/
awk
/
f2.awk
< prev
next >
Wrap
Text File
|
1991-04-30
|
102b
|
5 lines
BEGIN {
for (i=1; ; ) { printf " %d", i; if (i >= 9) break; i++ }
printf "\n"
}