introduction to computation
1.10-2.9.2022
wintersession 2022

function setup() {
createCanvas(400, 400);
background(220);
}

function draw() {
}

function mousePressed(){
ellipse(mouseX,mouseY,10);
}