文件名称:Lua安装包和资源
文件大小:17.9MB
文件格式:RAR
更新时间:2015-11-29 18:23:32
Lua 安装包 教程
-- defines a factorial function function fact (n) if n == 0 then return 1 else return n * fact(n-1) end end print("enter a number:") a = io.read("*number") -- read a number print(fact(a)) 这个例子定义了一个函数,计算输入参数n的阶乘;本例要求用户输入一个数字n,然后打印n的阶乘...
【文件预览】:
Lua安装包和资源
----Lua的Windows下安装包和资源()
--------lua-5.1中文手册.chm(210KB)
--------Lua程序设计.chm(268KB)
--------Lua Programing(第二版)中文.pdf(1.71MB)
--------Lua_v5.1.4.21.exe(14.58MB)
----Lua的Linux下的各种安装包.rar(1.6MB)