xxxxxxxxxx
21
function setup() {
createCanvas(400, 400);
}
function draw() {
background(250,130,65);
textSize(20);
fill ("white");
text("How do we generate SVGs with code?", 35, 40);
circle(120, 100, 20);
text("circle one", 135, 105);
circle(120, 130, 20, );
text("circle two", 135, 135);
fill("white");
text("how can we make this code reuseable?", 35, 190);
}