xxxxxxxxxx
17
// Draw a rectangle to the screen about every half a second.
let previousS;
function setup() {
createCanvas(400, 400);
frameRate(5)
}
function draw() {
background(220);
if (second() > previousS) {
rect(100, 100, 200, 200);
}
previousS = second();
}