[funcao] fatorial #lua
dofile("defs.lua") print(fact(5))
function fact(n) if n< 2 then return 1 else return n * fact(n-1) end end