mirror of
https://github.com/ThePhD/sol2
synced 2026-08-15 10:32:03 -04:00
12 lines
No EOL
263 B
C++
12 lines
No EOL
263 B
C++
#define SOL_ALL_SAFETIES_ON 1
|
|
#include <sol/sol.hpp>
|
|
|
|
int main(int argc, char* 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;
|
|
} |