mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
19 lines
269 B
C++
19 lines
269 B
C++
|
#define SOL_CHECK_ARGUMENTS 1
|
||
|
|
||
|
#include <sol.hpp>
|
||
|
#include <cassert>
|
||
|
|
||
|
int main() {
|
||
|
sol::state lua;
|
||
|
int x = 0;
|
||
|
lua.set_function("beep", [&x]{ ++x; });
|
||
|
lua.script("beep()");
|
||
|
assert(x == 1);
|
||
|
|
||
|
sol::function beep = lua["beep"];
|
||
|
beep();
|
||
|
assert(x == 2);
|
||
|
|
||
|
return 0;
|
||
|
}
|