rlox/interpreter/tests/lox/function/local_recursion.lox

8 lines
115 B
Lox
Raw Permalink Normal View History

2024-09-01 19:15:55 +02:00
{
fun fib(n) {
if (n < 2) return n;
return fib(n - 1) + fib(n - 2);
}
print fib(8); // expect: 21
}