Draw some text, uses the stroke color set in stroke() and the background color set in background().
YourScreen.text(string)
YourScreen.text(string, x, y)
Nothing
YourScreen.beginDraw();
YourScreen.clear();
YourScreen.stroke(255, 255, 255);
YourScreen.text("abc", 0, 1);
YourScreen.endDraw();