Guest User

Untitled

a guest
May 16th, 2012
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. // Hello World file for Processing or Processing.js
  2. void setup(){
  3. size(1000,700);
  4. background(255);
  5. }
  6. void draw(){
  7. stroke(random(255),random(255), random(255));
  8. line(random(width),random(height), random(width),random(height));
  9. println("Hello World!");
  10. }
Advertisement
Add Comment
Please, Sign In to add comment