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