aboutsummaryrefslogtreecommitdiffstats
path: root/test/sqrt.awk
blob: c9d8f5120acb251fc48cb59357bc28dd7e65e80f (plain)
1
2
3
4
BEGIN {
    for (i = 0; i <= 25; i++)
	printf "gawk sez -- square root of %2d is %15.12f\n", i, sqrt(i)
}