import processing.svg.*;

void setup(){
  size(900, 900);
  background(245);
  
  beginRecord(SVG, "processing_test.svg");
  
  for(int i=0;i<100;i++)
  {
   line(random(width), random(height), random(width), random(height)); 
  }
   
   endRecord();
  

}

void draw(){
 

}