textFont(font);Set a font family.
Arguments
fontThe font value returned when using loadFontfunction setup()
createWindow(200, 200);
end
function draw()
background('purple');
textFont('Monospace');
text('Hello from lu5!', 5, 110);
endOutput