10 lines
128 B
Plaintext
10 lines
128 B
Plaintext
|
void setup() {
|
||
|
size(900,400);
|
||
|
background(111);
|
||
|
}
|
||
|
|
||
|
void draw(){
|
||
|
fill(random(255));
|
||
|
rect(0,0,width,height);
|
||
|
|
||
|
}
|