term.clear() term.setCursorPos(1,1) -- etc
Here's my program so far,
function reset()
term.clear()
term.setCursorPos(1,1)
if term.isColor() then
term.setTextColor(colors.white)
term.setBackgroundColor(colors.black)
end
end
Here's the program I'm testing it with
os.unloadAPI("appleAPI")
os.loadAPI("appleAPI")
reset()
When I run the test program I get attempt to call nil but as far as I know, the function "reset()" should be a real function so I'm confused.












