text(str, x, y);Draw text on the screen.
Arguments
strString to renderxThe x position of the start of the textyThe y position of the top of the textFonts are not yet implemented
function setup()
createWindow(200, 200);
end
function draw()
background('purple');
text('Hello from lu5!', 25, 110);
endOutput