11 lines
127 B
Plaintext
11 lines
127 B
Plaintext
void setup() {
|
|
size(400, 400);
|
|
}
|
|
|
|
void draw() {
|
|
background(230);
|
|
|
|
float x = random(0, width);
|
|
line(x, 0, x, height);
|
|
}
|