ref: a3b68e649d2da36d19d78106134d1114f06b56e1 dir: /testdir/p.44/
function fact(n) { if (n <= 1) return 1 else return n * fact(n-1) } { print $1 "! is " fact($1) }