eclipse lua linux,Eclipse安装Lua开发插件

Eclipse中安装Lua开发插件,很简单,只要如下几个步骤就好~

安装步骤

Help -> EclipseMarketplace

0818b9ca8b590ca3270a3433284dd417.png

搜索框输入“lua”查找插件~

点击“Install”按钮,进行安装

0818b9ca8b590ca3270a3433284dd417.png

点击“Confirm”按钮,进行确认

0818b9ca8b590ca3270a3433284dd417.png

选择“I accept the terms of the license agreement”,并点击“Finish”按钮

0818b9ca8b590ca3270a3433284dd417.png

点击“Yes”重启

0818b9ca8b590ca3270a3433284dd417.png

编写Lua脚本程序

新建Lua工程

执行上述的安装Lua插件以后,新建工程可以看到“Lua”相关选项~

0818b9ca8b590ca3270a3433284dd417.png

编写Lua简单示例

local function main()

local message = "Welcome to Lua world~";

print(message);

local books = {"NoSQL实践指南","Java安全编码标准"};

local startIndex = 1;

local endIndex = table.getn(books);

for i= startIndex, endIndex do

print(books[i])

end

local isCompleted = true;

print(type(isCompleted));

print(isCompleted);

local filename = "filetest.txt";

file = io.open("filetest.txt", "w+");

file:write("文件末尾注释");

file:flush();

file:close();

end

main()

运行程序~

0818b9ca8b590ca3270a3433284dd417.png

输出结果:

Welcome to Lua world~

NoSQL实践指南

Java安全编码标准

boolean

true

至此,表明Eclipse安装Lua开发工具插件已经完成,并可用~

LuaEclipse-开源 LuaEclipse是基​​于Eclipse平台的Lua语言的IDE。 它具有语法突出显示,内容助手,代码运行,集成文档等功能。 立即下载

相关推荐

eclipse安装LuaEclipse插件

源码,非必须 博文链接:https://gundumw100.iteye.com/blog/1131131

Eclipse开发lua代码

Eclipse开发lua代码 LuaEclipseEclipse 用来开发 Lua 程序的插件,功能比较完备,它可以实现编Lua脚本代码、语法高亮、编译错误提示,代码和注释的折叠、调试等。 LuaEclipse:http://luaforge.net/projects/luaeclipse/ 一、LuaEclipse插件安装 下载LuaEclipse的离线安装包,下...

永远的VC的专栏 1382

lua 中的eclipse插件lua development tools,在原有的基础上实现工程函数跳转及提示

lua 中的eclipse插件lua development tools,在原有的基础上实现工程函数跳转及提示

Eclipse中的Lua插件 LDT

想学习lua玩一玩,然后知道了eclipse有ldt这一款插件,就想用用试试,还方便。然而用普通的marketplace里找到的LDT并不能用,我不知道是什么原因,安装可以,但在新建项目的时候会出现Problems occurred when invoking code from plug-in: “org.eclipse.jface”的问题。经过我百般查找,终于找到一个能用的安装LDT的方法。

zhagzheguo的博客 3151

Eclipse —— 安装Lua Eclipse插件

最近在学习lua,这里记录下eclipse安装lua插件的方法。 步骤 首先 单击Eclipse->Help->Install New Software 在出现的Install窗口中,点击右侧的Add 并在Name中输入 kepler Location中输入 http://download.eclipse.org/releases/kepler,点击ok 然后出现下...

Frank_lyn的博客 2147

LuaEclipse配置

IntroductionLuaEclipse is a collection of plugins for the Eclipse platform. Its goal is to facilitate the development of programs using Lua, either as a standalone language or as an extension lan

8539

eclipse lua linux,安裝Lua的開發工具Eclipse的IDE在Linux CentOS的缺少依賴7

我想使用Eclipse爲我的火炬/ Lua的項目,在我的CentOS的Linux發佈1611年3月7日(核心)的64位筆記本。安裝Lua的開發工具Eclipse的IDE在Linux CentOS的缺少依賴7我安裝了最新的Eclipse Luna IDE,然後嘗試通過在website上遵循其「現有Eclipse安裝」來安裝Lua開發工具(LDT)包。不幸的是,試圖安裝包後,Eclipse中說:The...

weixin_39573822的博客 151

linuxeclipse安装mvn,Eclipse安装maven插件

说明网上常见的有在线安装(Install New Software)和离线安装两种,因为所安装的maven插件版本与eclipse的版本不一致,一直安装不成功。方案1. 打开eclipse,菜单“Help”-“Install New Software...”2. 在Work with 地址栏输入:http://download.eclipse.org/releases/juno (注意:juno...

weixin_40009207的博客 347

eclipse lua linux,Lua开发工具脱离Eclipse 成为独立版本

Lua开发工具(Lua Development Tools,LDT)一直以来是作为Eclipse的一个插件(Koneki)存在,现在LDT开发团队决定将其从Eclipse剥离,发展成为一个独立的开发环境。LDT开发者Benjamin Cabé说,这个独立的预配置软件包,对于不是特别熟悉Eclipse SDK的开发者来说最好不过了。开发者可以在32位和64位的Windows、Mac OS X 和 L...

weixin_30746159的博客 190

linux+eclipse+lua

1、  [root@damin lua-5.2.2]# make linux cd src && make linux make[1]: Entering directory `/home/damin/app/lua-5.2.2/src' make all SYSCFLAGS="-DLUA_USE_LINUX" SYSLIBS="-Wl,-E -ldl -lreadline" make[2

心情扬的专栏 1582

eclipse中建立lua开发环境

1. 给你的eclipse安装LuaEclipse,新增Eclipse Software Update Site“http://luaeclipse.luaforge.net/update-site ”。2. 下载LuaBinaries,网址“http://luabinaries.sourceforge.net/”。例如下载“lua5_1_4_Win32_bin.zip ”。3. 解压缩“lua5_1_4_Win32_bin.zip ”。4. 在eclipse中设置LUA脚本解释器,就是刚才“lua5

阿道的专栏 1万+

eclipse lua

eclipse luaeclipse官方的lua开发工具,支持语法提示。

LuaEclipse插件以及LuaJava开发工具包

LuaEclipse插件以及LuaJava开发工具包,里面有个Read.txt说明了安装配置。敬请参考

【cocos2dx开发技巧6】脚本lua的使用--开发环境的配置

转发,请保持地址:http://blog.csdn.net/stalendp/article/details/8920018 在cocos2dx中使用lua进行开发的过程中,肯定会涉及到对lua功能进行扩充的情况,网络上已经有相关的文章,不过不是那么简单明了。所以我这里特意写了这篇文章,也是作为自己学习的一个总结吧。这里我将使用Eclipse开发lua。使用eclipse开发lua,可以运用其...

runfeel 275

Eclipse安装Lua Eclipse插件

步骤单击Eclipse->Help->Install New Software… 在Work with中输入网址 在Programming Languages中选择Lua Development Tools,点击finish 在Eclipse中切换到Lua环境

Yano_nankai的博客 7017

eclipse lua插件安装

eclipse安装lua插件

懒雄熊的专栏 8402

Eclipse安装Lua开发插件

2019独角兽企业重金招聘Python工程师标准>>> ...

weixin_33752045的博客 166
上一篇: linux shell启动fcitx,装Fcitx后用在终端打入命令fcitx出现如下错误。刚入门。求助...
下一篇: grade在c语言中的作用,如何理解Gradle?Grade在Android的构建过程中有什么作用?动态修改AndroidManifest.xml....
源汉字密码探源
博客等级 码龄10年 43粉丝 82原创
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值