10 lines
114 B
Lua
10 lines
114 B
Lua
local testlib = {}
|
|
|
|
function testlib.test_add_ten (x)
|
|
return x + 10
|
|
end
|
|
|
|
Log.info("in testlib")
|
|
|
|
return testlib
|