xxxxxxxxxx
31
function setup() {
createCanvas(700, 400);
}
function draw() {
//background color
background(205, 238, 247);
//buildings
fill(214, 88, 126);
rect(100,200,50,200);
fill(240, 175, 125);
rect(180,250, 70,150);
//windows
fill(233, 243, 247);
rect(107,205,12,20);
rect(129,205,12,20);
//sun
fill(255, 219, 128);
ellipse(70,70,80,80);
//text
textSize(32);
fill('black')
text('hi', 150, 150);
}