xxxxxxxxxx
15
function setup () {
createCanvas (innerWidth, 150)
textAlign(CENTER, CENTER)
textSize (32)
noStroke ()
}
function draw () {
background (`turquoise`)
// using a template literal to construct a string:
const msg = `we are up to frame ${ frameCount }!`
text (msg, width / 2, height / 2)
}