5 lines
73 B
Awk
5 lines
73 B
Awk
function fact_r(n)
|
|
{
|
|
if ( n <= 1 ) return 1;
|
|
return n*fact_r(n-1);
|
|
}
|