aboutsummaryrefslogtreecommitdiff
path: root/testdir/p.44
blob: 5c02a98b0d8a57cc8f8c5fec9b44a4e7ec1f2716 (plain)
1
2
3
4
5
6
7
function fact(n) {
	if (n <= 1)
		return 1
	else
		return n * fact(n-1)
}
{ print $1 "! is " fact($1) }