Lua engine?

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
clc02
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 7
Joined: Sun Mar 22, 2009 9:55 pm

Lua engine?

Post by clc02 »

I was wondering if there was a compiler for lua. I'm getting better at cpp but it's a pretty good jump from lua.
I think I would have to link it with c or cpp for the GUI unless someone else knows of something like sdl or openGL.
There was a lua studio thing but I think it's kinda useless since it's far in the beta and has alot of limitations.
User avatar
Falco Girgis
Elysian Shadows Team
Elysian Shadows Team
Posts: 10294
Joined: Thu May 20, 2004 2:04 pm
Current Project: Elysian Shadows
Favorite Gaming Platforms: Dreamcast, SNES, NES
Programming Language of Choice: C/++
Location: Studio Vorbis, AL
Contact:

Re: Lua engine?

Post by Falco Girgis »

Lua is an interpreted language, not compiled.

You can download the source from their site. You usually compile the interpreter and embed it within your project. Lua itself is interpreted straight from text files.

There is also "luac," a standalone Lua compiler that is packaged with the libs at http://lua.org.
Post Reply