xref: /freebsd/contrib/one-true-awk/testdir/t.fun3 (revision a3c858005cae175e277f6f6735ca9eaea7eaf3c3)
1function f(n) { while ((n /= 10) > 1)  print n }
2function g(n) { print "g", n }
3{ f($1); g($1) }
4