xxxxxxxxxx
26
let x = 0;
let y = 0;
const s = 10;
function setup() {
createCanvas(400, 400);
}
function draw() {
if (x > width) {
x = 0;
y += s;
} else x += s;
if (Math.random() > 0.5)
line(x, y, x + s, y + s);
else
line(x + s, y, x, y + s);
if (y > height) {
noLoop();
console.log("Done!");
}
}