/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/lua/smart_pointer_simple_runme.lua
16 строк
303 B
Erez Geva
Remove Lua 5.0 and Lua 5.1 and Lua options
30 май 2026, 19:24
30 май 2026, 19:24
74ff929
Код
Авторство
О чём код?
sps=require("smart_pointer_simple") catch_undef_globs() -- catch "undefined" global variables foo1 = sps.Foo() foo1.x = 5 assert(foo1.x == 5) assert(foo1:getx() == 5) bar1 = sps.Bar(foo1) bar1.x = 3 assert(bar1.x == 3) assert(bar1:getx() == 3) bar1.x = 5 assert(bar1.x == 5) assert(bar1:getx() == 5)