xref
: /
freebsd
/
contrib
/
one-true-awk
/
testdir
/
t.fun3
(revision e51b3d8e53cee7d6a36e34e1cd4d588593d71b40)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
function f(n) { while ((n /= 10) > 1) print n }
2
function g(n) { print "g", n }
3
{ f($1); g($1) }
4