xxxxxxxxxx
24
function setup() {
createCanvas(220, 400);
}
function draw() {
background(45, 45, 70);
stroke(255);
strokeWeight(20);
strokeCap("square");
line(50, 300, 50, 100);
line(50,100, 170,100);
line(50,150, 170,150)
stroke(255);
strokeWeight(20);
strokeCap("square");
line(90, 300, 90, 190);
line(170, 300, 170, 190);
line(90,190, 170, 190);
line(90, 235, 170, 235);
}