An open API service indexing awesome lists of open source software.

https://github.com/bgianfo/lua-play

Playing around with embedding Lua in C++ for work.
https://github.com/bgianfo/lua-play

Last synced: 6 months ago
JSON representation

Playing around with embedding Lua in C++ for work.

Awesome Lists containing this project

README

          

##You'll need lua with headers and library:

On Mac:

$ sudo port install lua

On Linux:

$ sudo apt-get install lua5.1

On windows you might be able to get [Lua for windows](http://luaforwindows.luaforge.net/) working.

Resources
---------
* [Lua 5.1 Reference Manual](http://www.lua.org/manual/5.1/)

* [How to embed lua 5.1 in C++](http://linux.byexamples.com/archives/406/how-to-embed-lua-51-in-c/)

* [cc by example](http://cc.byexamples.com/)

* [Using Lua with C++](http://csl.sublevel3.org/lua/)