mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-02 21:00:56 +00:00
14 lines
168 B
Plaintext
14 lines
168 B
Plaintext
/* fibonacci sequence */
|
|
func fib(n) {
|
|
if n < 2 {
|
|
n
|
|
} else {
|
|
fib(n - 1) + fib(n - 2)
|
|
}
|
|
}
|
|
|
|
export func main() {
|
|
let result = fib(30)
|
|
println(result)
|
|
}
|