local function myLuaFunc()
return "Hello"
end
local cclosure = newcclosure(myLuaFunc)
assert(myLuaFunc() == cclosure(), "Wrapped function should return the same values")
assert(iscclosure(cclosure) == true, "The wrapped function should identify as a C closure")