/*****************************************************
      A simple Processing program"
      - Creates a 600 x 500 pixel window
      - Draws a line
      - Prints a message in the output window
 *****************************************************/

void setup() {
     size(600, 500);
     background(33, 66, 120);
     stroke(255);
}

void draw(){
     line(300, 50, 500, 400);
     println("Hello, World!");
}