Retrive and load table code (Not working)
function load(name)
local file = fs.open(name,"r")
local data = file.readAll()
file.close()
return textutils.unserialize(data)
end
tabl = load("root/system/configs/AppPos.conf")
print(tabl)
print(ypos)
print(xpos)
This is the table (Think its working)
{
app = "Lua_Shell",
xpos = "10",
ypos = "5",
}












