Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

gleam / test / project_cranelift / src / project_cranelift.gleam
100 B 7 lines
1pub fn fib(n: Int) -> Int { 2 case n { 3 0 -> 0 4 1 -> 1 5 _ -> fib(n - 1) + fib(n - 2) 6 } 7}