]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Lua/scripts/Fact.lua
AppPkg: Add the Lua interpreter and library.
[mirror_edk2.git] / AppPkg / Applications / Lua / scripts / Fact.lua
CommitLineData
16a5fed6 1-- defines a factorial function\r
2function fact (n)\r
3 if n == 0 then\r
4 return 1\r
5 else\r
6 return n * fact(n-1)\r
7 end\r
8end\r
9\r
10print("enter a number:")\r
11a = io.read("*number") -- read a number\r
12print(fact(a))\r