This repository has been archived on 2026-03-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bucky-old/example/main.bky
2026-01-12 16:08:08 +01:00

8 lines
169 B
Plaintext

/// This function computes the n-th value of the fibbonacci sequence.
fn fib(n: u64): u64 {
if n < 2 {
return n;
}
return fib(n - 1) + fib(n - 2);
}