ref: 797b4ce60e118ccc6b0b38b2d46b6c3acbe50778 dir: /test/fib.myr/
use std /* checks if recursive functions work. should return 21. */ const fib = {n if n <= 0 -> 0 elif n == 1 -> 1 else -> fib(n - 1) + fib(n - 2) ;; } const main = { -> fib(8) }