You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wasm3/test/lang/fib.min.js

4 lines
80 B
JavaScript

function fib(f){if(f<2)return f
return fib(f-1)+fib(f-2)}
console.log(fib(32));