xxxxxxxxxx
19
let rule1;
let rule2;
let rule3;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
rule1 = text('Rule #1 - When eating, just eat, dont watch screens', 10, 10);
rule2 = text('Rule #2 - Limit your online social interaction time to 1hour23 mins a day', 15, 30);
rule3 = text('Rule #3 - write every day, be code, be paper, be something', 20, 50);
text('Seconds with no rules broken', width/2, height/2);
text((floor(millis()/1000)), width/2, (height/2)+10)
// text(Date(), 40,40);
}