Files
sunny9898/task8/wk7/wk7_example3a/wk7_example3a.pde
louiscklaw 5637fbf94f update,
2025-02-01 02:07:58 +08:00

11 lines
127 B
Plaintext

void setup() {
size(400, 400);
}
void draw() {
background(230);
float x = random(0, width);
line(x, 0, x, height);
}