xref: /freebsd/contrib/one-true-awk/testdir/p.44 (revision d396c67f26b079c2808002c07212d9df9818a11b)
1function fact(n) {
2	if (n <= 1)
3		return 1
4	else
5		return n * fact(n-1)
6}
7{ print $1 "! is " fact($1) }
8