xxxxxxxxxx
28
/*
Meme
*/
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255);
// big circle
fill (255,0,0);
circle (200,200,300);
// medium circle
fill (255);
circle(200,199,220);
// little circle
fill (255,0,0);
circle(200,200,100);
// TEXT
fill(255,0,0);
textSize(50);
text("TARGET",100,350,900);
}