xxxxxxxxxx
18
let song;
function preload() {
song = loadSound("./epic-hip-hop.mp3");
}
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(220, 20, 120);
}
function mouseClicked() {
song.play();
}