The Lua table is the data structure. ... save yourself worrying about 1 vs 0. function factorial (n) if n == 0 then return 1 else return n * factorial (n-1) ...
確定! 回上一頁