mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
12 lines
263 B
C++
12 lines
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;
|
||
|
}
|