eclipse中的ldt插件是Lua Development Tools,开发lua专用的插件:
1、点击help-amp;amp;gt;install new softWare,输入http://luaeclipse.luaforge.net/update-site/site.xml
2、插件的在线安装地址为:http://lu ...……
lua的corroutine学习
function receive (prod)
local status, value = coroutine.resume(prod)
return value
end
function send (x)
coroutine.yield(x)
end
function producer ()……
Using LUA with C++
原文链接:http://www.spheregames.com/index.php?p=templates/pages/tutorials
作者:http://www.spheregames.com
翻译:飘飘白云(http://www.cppblog.com/kesalin )
译注:翻译本文并未获得 ...……