fun fib(n) { if (n <= 1) { return n; } return fib(n-1) + fib(n-2); } int n = 0; while (n < 5) { print(fib(n)); n = n + 1; }