以下のソースで実行
size(940,200);上記結果は以下
colorMode(RGB, 100);
background(100);
for(int i=0 ; i < 940 ; i++) {
stroke(random(100), random(100), random(100));
strokeWeight(random(10));
line(i, 0,
i, 200);
}