fn fib(n: i32) -> i32
if n < 2 then:
n
else:
fib(n - 1) + fib(n - 2)
Voyd
A high performance WebAssembly programming language with a focus on full stack web development.
fn fib(n: i32) -> i32
if n < 2 then:
n
else:
fib(n - 1) + fib(n - 2)
A high performance WebAssembly programming language with a focus on full stack web development.