funcons-simple-0.1.0.3: tests/Advanced/Advanced1.output
=== Program ===
function main () {
print(fact(5));
}
function fact(n) {
if (n == 1) {
return 1;
} else {
return (n * fact(n-1));
}
}
=== Output ===
Result:
null-value
Output Entity: standard-out
120