size (900, 600);
stroke (0);               // Black
line (100,100, 150, 100); // Horizontal
line (100,120, 150,170);  // 45 degrees
stroke (0,200,0);         // Green
strokeWeight (2);         // 2 pixels thick
line (100,150, 150,200);  // 45 degrees
strokeWeight (4);         // 4 pixels thick
line (100,200, 150,250);  // 45 degrees

circle (250, 100, 50);    // Circle
noFill ();
circle (250, 170, 50);    // Circle
fill (0,0,200);
noStroke();
circle (250, 250, 50);    // Blue Circle

rect (300,100, 100, 50);  // Blue rectangle
stroke (0);
noFill ();
strokeWeight (1);
rect (300,160, 50, 50);   // Square, unfilled
