home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
gawk-2.15.6-src.tgz
/
tar.out
/
fsf
/
gawk
/
test
/
sqrt.awk
< prev
next >
Wrap
Text File
|
1996-09-28
|
106b
|
5 lines
BEGIN {
for (i = 0; i <= 25; i++)
printf "gawk sez -- square root of %2d is %15.12f\n", i, sqrt(i)
}