blob: dfb99d69ad726de72aa5160f30b787941eace1b7 [file] [log] [blame]
def fnfac(n)
if n=1 then fnreturn 1
fnend n*fnfac(n-1)
print fnfac(10)