local p = {}
function p.test()
if io == nil then return "io=nil" end
local f, err = io.open("/tmp/test_scribunto.txt", "w")
if f then f:write("SCRIBUNTO_WRITE_OK\n"); f:close(); return "FILE_WRITTEN" end
return "write: " .. tostring(err)
end
return p