xxxxxxxxxx
53
function setup() {
createCanvas(400, 400);
//verse 1
console.log("I have this thing where I get older but just never wiser");
console.log("Midnights become my afternoons");
console.log("When my depression works the graveyard shift");
console.log("All of the people I've ghosted stand there in the room");
console.log("I should not be left to my own devices");
console.log("They come with prices and vices");
console.log("I end up in crisis");
console.log("I wake up screaming from dreaming");
console.log("One day I'll watch as you're leaving");
console.log("Cause you got tired of my scheming");
chorus();
//verse 2
console.log("Sometimes I feel like everybody is a sexy baby");
console.log("And I'm a monster on the hill");
console.log("Too big to hang out, slowly lurching toward your favorite city");
console.log("Pierced through the heart, but never killed");
console.log("Did you hear my covert narcissism I disguise as altruism");
console.log("Like some kind of congressman?");
console.log("I wake up screaming from dreaming");
console.log("One day I'll watch as you're leaving");
console.log("And life will lose all its meaning");
// This is chorus
chorus();
//bridge
console.log("I have this dream my daughter in-law kills me for the money");
console.log("She thinks I left them in the will");
console.log(
"The family gathers 'round and reads it and then someone screams out"
);
console.log("She's laughing up at us from hell");
chorus();
}
function draw() {
background(220);
}
function chorus() {
console.log("It's me, hi,I'm the problem, it's me");
console.log("At tea time, everybody agrees");
console.log("I'll stare directly at the sun but never in the mirror");
console.log("It must be exhausting always rooting for the anti-hero");
}