xref: /freebsd/contrib/one-true-awk/testdir/p.44 (revision 35c87c070a2d04f06c56578b0a4b2e9c13f62be5)
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