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.
- Host: GitHub
- URL: https://github.com/bgianfo/lua-play
- Owner: bgianfo
- Created: 2009-05-18T03:43:55.000Z (about 17 years ago)
- Default Branch: master
- Last Pushed: 2009-05-18T05:23:05.000Z (about 17 years ago)
- Last Synced: 2025-06-05T21:59:55.171Z (about 1 year ago)
- Homepage:
- Size: 78.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
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/)