Lua for Windows 开始学习Lua编程

Lua for Windows 开始学习Lua编程,第1张

概述        Lua for Windows is a 'batteries included environment' for the Lua scripting language on Windows.这是在Windows上学习Lua的整套开发环境,包含Installer Lua Interpreter, Lua Reference Manual, Quick Lua Tour Sample         Lua for Windows is a 'batterIEs included environment' for the Lua scripting language on windows.这是在windows上学习Lua的整套开发环境,包含Installer Lua Interpreter,Lua Reference Manual,Quick Lua Tour Sample,Examples directory,librarIEs with documentation. Lua Compiler (luac) Text Editors (SciTE and I think maybe wxLua editors too) C header files/librarIEs/etc. for building C module 项目地址: http://code.google.com/p/luaforwindows/
当前版本:5.1.4-45


        下载之后,在安装目录" ...\Lua.1\SciTE"下,打开 SciTE.exe文件,新建一个文档,保存为" hello.lua",文档内容如下:
1
print( "hello,lua")
按下F5,在下面的输出窗口将会有如下内容: 
1
2
3
>lua -e "io.stdout:setvbuf 'no'" "hello.lua"  
hello,lua
>Exit code: 0
运行结果图如下所示:


在" ...\Lua.1\examples"目录下,有个" quickluatour.lua"是一些快速入门的示例。其中有个例子,是利用 IupLua显示对话框的,新建一个" test.lua"文件,内容如下: 
1
2
3
4
5
6
7
8
9
10
11
require(  "iuplua" )
ml = iup.multiline
    {
    expand= "YES",
    value= "Quit this multiline edit app to continue Tutorial!",
    border= "YES"
    }
dlg = iup.dialog{ml; Title= "IupMultiline", size= "QUARTERxQUARTER",}
dlg:show()
print( "Exit GUI app to continue!")
iup.MainLoop()
保存。在命令提示符下输入" lua test.lua",回车,效果如下所示:

总结

以上是内存溢出为你收集整理的Lua for Windows 开始学习Lua编程全部内容,希望文章能够帮你解决Lua for Windows 开始学习Lua编程所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1266818.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存