- // 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!");
- }