xxxxxxxxxx
14
function setup() {
createCanvas(400, 400);
canelo();
}
function draw() {
background(220);
}
function canelo() {
print("chicago");
}
// why functions? you can call the function when you need it, saves space, invent something you can keep using, only fix it in one space, better structure and easier to read