xxxxxxxxxx
30
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
// E
strokeWeight(6);
stroke(255);
fill(0);
rect(100,100,100,200);
line(100,200,200,200);
noStroke();
rect(150,103,53,194);
//L
stroke(255);
rect(216,100,100,200);
noStroke();
noStroke();
rect(219,97,100,200);
}