Using Lua in CodeLite?
Posted: Fri May 27, 2011 7:21 pm
The IDEs description said it had 'function highlighting' for Lua. Can CodeLite actually compile and run Lua scripts? How do I do that?
You will have to be more specific than that, since most of the users on this forum (me included) are not familiar enough with lua for answering this question.Greendolph wrote:Can CodeLite actually compile and run Lua scripts? How do I do that?
Code: Select all
local function main()
local str = 'Hello Word!'
for i = 1, 5 do
print(tostring(i) .. str)
end
end
t = {'this is an', 'array'}
main()
print(t[1])
You can't. Unless you are willing to start developing codelite and add the Lua code completion support.Lerg wrote:but I want to add code completion for Lua in CodeLite, how do I do it?