xxxxxxxxxx
14
// Click the ‘play’ button above or type command-return
// to run this code in the P5 Editor
function setup() {
createCanvas(400, 400); // set the size of the canvas
// look in the 'Console' below to see this message
print("Hello JavaScript console")
fill(127) // grey value between 0–255
textSize(32) // font size in pixels
text("Hello p5 canvas 👋", 40, 100) // (message, x, y)
}