Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 16th, 2012  |  syntax: None  |  size: 0.26 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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. }