xxxxxxxxxx
19
// Random program flow
//
// Jared Donovan 2022
//
// Half the time, this program will draw
// a line and the other half, a circle.
function setup() {
createCanvas(400, 400);
background(220);
let r = random(100);
if (r < 50) {
line(0, 0, width, height);
} else {
circle(width / 2, height / 2, width * 0.4);
}
}