green = Color.new(0, 255, 0)
screen:print(0,0, "Hello World\nby Entity", green)
screen.flip()
while true do
screen.waitVblankStart()
end
I end up with Hello World[weirdcharacter]by Entity. Is this an issue in Winluaplayer, or does it affect the PSP version as well?
I'm working on a simple brainf*** editor/interpreter. I'll need to split the BF code (the main string) to multiple lines. It would be much easier if it could support \n without having to code an inefficient and lengthy workaround.