#!/usr/bin/env fctool %func fib n %if {n <= 1} %ret {n} %endif %ret {fib(n - 1) + fib(n - 2)} %endfunc {fib(input("fib "))}