NNNDKFH633YFWJQVCS4H7XAX3BK44JN3PVD3EEKTN6E6GIGR67AQC
function App.screen.draw(obj, x,y)
if type(obj) == 'userdata' then
-- ignore most things as graphics the test harness can't handle
elseif obj.type == 'text' then
App.screen.print(obj.data, x,y)
else
print(obj.type)
assert(false)
end
end