mirror of
https://github.com/ThePhD/sol2
synced 2026-08-15 10:32:03 -04:00
11 lines
181 B
C++
11 lines
181 B
C++
#include <sol/sol.hpp>
|
|
|
|
sol::function fn;
|
|
|
|
int main(int, char*[]) {
|
|
sol::state lua;
|
|
lua.open_libraries(sol::lib::base);
|
|
fn = lua["print"];
|
|
fn.abandon();
|
|
return 0;
|
|
}
|