repo.or.cz
/
luabind.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Don't construct T* const& types for attribute access.
[luabind.git]
/
examples
/
hello_world
/
README
blob
1fe610a4e51f5ef84879585476a9bb5ac880bfcc
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.
4
5
> loadlib('hello_world.dll', 'init')()
6
> greet()
7
Hello world!
8
>
9