-- EVILMANA.COM PSP LUA CODEBASE
-- www.evilmana.com/tutorials/codebase
-- Custom Print Function
-- SUBMITTED BY: Charlie
white = Color.new(255,255,255)
function text(x,y,inputString)
return screen:print(x,y,inputString,white)
end
while true do
screen:clear()
text(10,10,"hello")
screen.flip()
end