git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@13015 626c5289-ae23-0410-ae9c-e8d60b6d4f22
16 lines
432 B
Lua
16 lines
432 B
Lua
require("import") -- the import fn
|
|
import("li_factory") -- import code
|
|
|
|
-- moving to global
|
|
for k,v in pairs(li_factory) do _G[k]=v end
|
|
|
|
-- catch "undefined" global variables
|
|
setmetatable(getfenv(),{__index=function (t,i) error("undefined global variable `"..i.."'",2) end})
|
|
|
|
circle = Geometry_create(Geometry_CIRCLE)
|
|
r = circle:radius()
|
|
assert(r == 1.5)
|
|
|
|
point = Geometry_create(Geometry_POINT)
|
|
w = point:width()
|
|
assert(w == 1.0)
|