8 lines
100 B
Lua
8 lines
100 B
Lua
|
-- Create a nested lua_State object
|
||
|
S = State()
|
||
|
|
||
|
S:dostring([[
|
||
|
flag = ...
|
||
|
print(flag)
|
||
|
]], true)
|