developpers
API
documentation
download
about
lan_rec_func.liq
def rec fact(n) = if n == 1 then 1 else n * fact(n-1) end end