orca/ext/wasm3/test/lang/fib.walt

7 lines
110 B
Plaintext

export function fib(n: i32): i32 {
if (n < 2) {
return n;
}
return fib(n-1) + fib(n-2);
}