Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
function fact(n) if n == 0 then return 1 else return n * fact(n - 1) end end n = 5 print(fact(n)) --[[ run: 120 --]]