Suppress a bunch of "unreferenced parameter" warnings.
[luabind.git] / examples / hello_world / README
blob1fe610a4e51f5ef84879585476a9bb5ac880bfcc
1 this example will build an extension module as a shared library, use
2 loadlib() from within the lua interpreter to load the library, it will
3 then export a function named greet() which you can call.
5 > loadlib('hello_world.dll', 'init')()
6 > greet()
7 Hello world!