xxxxxxxxxx
22
function setup() {
createCanvas(400, 400);
}
function draw() {
background(200);
let m = minute();
let h = hour();
let s = second();
text(h, 5, 50);
text(m, 20, 50);
text(s, 35, 50);
ellipse(200, 200, s, s);
}