package a fn main() int { x := fib(10); return x; }; fn fib(n int) int{ if n <= 1 { return n; }; return fib(n-1) + return fib(n-2); };