text(str, x, y);
Draw text on the screen.
Arguments
str
String to renderx
The x position of the start of the texty
The 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);
end
Output