How do you do it in MicroScript?
You can use \n
print("Line1\nLine2")
Output:
Line1 Line2
I don't think that \n works for screen.drawText(). You would need to make separate text boxes.
\n
screen.drawText()
Ok thanks!