@@ -0,0 +1,19 @@
val int s 3; # global
val [int->int] fib int n {
return if == n 0 {
1
} else {
n * fib
};
val [->int] main {
val str line input;
val int n to_int line,;
if < n 0 {
print "ILLEGAL"
print to_str fib n,;
}
The note is not visible to the blocked user.