Iñigo Valentin 7b7ad59a2c Initial commit. Minor modifications over QGears %!s(int64=4) %!d(string=hai) anos
..
Jamfile 7b7ad59a2c Initial commit. Minor modifications over QGears %!s(int64=4) %!d(string=hai) anos
README 7b7ad59a2c Initial commit. Minor modifications over QGears %!s(int64=4) %!d(string=hai) anos
hello_world.cpp 7b7ad59a2c Initial commit. Minor modifications over QGears %!s(int64=4) %!d(string=hai) anos
project-root.jam 7b7ad59a2c Initial commit. Minor modifications over QGears %!s(int64=4) %!d(string=hai) anos

README

this example will build an extension module as a shared library, use
loadlib() from within the lua interpreter to load the library, it will
then export a function named greet() which you can call.

> loadlib('hello_world.dll', 'init')()
> greet()
Hello world!
>