Skip to content

Instantly share code, notes, and snippets.

@omundy
Created September 11, 2011 02:52
Show Gist options
  • Save omundy/1209106 to your computer and use it in GitHub Desktop.
Save omundy/1209106 to your computer and use it in GitHub Desktop.
Hello World file for Processing or Processing.js
// Hello World file for Processing or Processing.js
void setup(){
size(1000,700);
background(255);
}
void draw(){
stroke(random(255),random(255), random(255));
line(random(width),random(height), random(width),random(height));
println("Hello World!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment