aboutsummaryrefslogtreecommitdiff
path: root/tests/vendor/lua/5.4/factorial.lua
blob: 00cfb20f7aa8e4181479ec441b643dd805e3344e (plain)
1
2
3
4
5
6
7
8
9
10
-- defines a factorial function
function fact (n)
  if n == 0 then
    return 1
  else
    return n * fact(n-1)
  end
end
    
return fact(10)