xxxxxxxxxx
15
function setup () {
createCanvas (400, 200)
fill ('hotpink')
noStroke ()
noLoop () // do not loop draw
}
function draw () {
background ('turquoise')
for (let x = 5; x < width; x += 20) {
square (x, 95, 10)
}
}