xxxxxxxxxx
23
// ADD TWO LINES (AND ONLY TWO LINES!)
// FOR GOLAN'S BIRTHDAY CARD
// COMMENT ABOVE IT YOUR BIRTHDAY WISHES
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
/*hi golan, happy birthday! I am so grateful for
all of your mentorship and kindness these past
two years, I've grown so much as an artist with your
help! The Studio has become a second home to me
and I am incredibly grateful - Connie */
textAlign(CENTER);
text("happy birthday! :-)", width/2, height/2);
//NEXT MESSAGE HERE
}