xxxxxxxxxx
23
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(220);
noStroke();
fill(255, 100, 150);
//currentHour = hour();
//currentMin = minute();
//currentSecond = second();
textSize(32);
//text(currentHour, 50, 50);
//text(currentMin, 50, 100);
//text(currentSecond, 50, 150);
text(hour(), 50, 50);
text(minute(), 50, 100);
text(second(), 50, 150);
}