xxxxxxxxxx
18
//Anjali Chary
//Visualizing Time. Code 1.
function setup() {
createCanvas(600, 600);
}
function draw() {
background(220);
let h = hour();
let m = minute();
let s = second();
noStroke();
rect(width/2, height/2, s * 10, s*10);
}