sol2/examples/source/tutorials/open_multiple_libraries.cpp
ThePhD 57d9a05f88
🎨 Refactor tutorial examples
- 🛠 Make sure the tutorials compile across platforms!
- ✍ Redo quite a bit of the documentation
2021-03-06 10:14:48 -05:00

17 lines
339 B
C++

#define SOL_ALL_SAFETIES_ON 1
#include <sol/sol.hpp>
int main(int argc, char* argv[]) {
// silence unused warnings
(void)argc;
(void)argv;
sol::state lua;
lua.open_libraries(sol::lib::base,
sol::lib::coroutine,
sol::lib::string,
sol::lib::io);
lua.script("print('bark bark bark!')");
return 0;
}