// This is a comment /* This is a multiline comment */ size(400,400); // Sets the canvas too 400 x 400 pixels background(100,0,0); stroke(255); for(int i=0; i<100; i++) { println("i=="+i); line(50,50+i*3, 350,50+i*3); } noStroke(); fill(0,200,255); for(int i=0; i<10; i++) for(int j=0; j<10; j++) ellipse(50+i*50,50+j*50, 20,20);