Created
September 11, 2011 02:52
-
-
Save omundy/1209106 to your computer and use it in GitHub Desktop.
Hello World file for Processing or Processing.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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