mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
13 lines
265 B
C++
13 lines
265 B
C++
#define SOL_ALL_SAFETIES_ON 1
|
|
#include <sol/sol.hpp> // or #include "sol.hpp", whichever suits your needs
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
sol::state lua;
|
|
lua.open_libraries(sol::lib::base);
|
|
|
|
lua.script("print('bark bark bark!')");
|
|
|
|
return 0;
|
|
}
|