Many Circles
This very simple program just draws a circle at the location of the mouse cursor.Code
void setup() {
size(200,200);
background(0);
}
void draw() {
stroke(255);
fill(0);
ellipse(mouseX,mouseY,30,30);
}