new p5(sketch => { sketch.preload = () => { /* load images and music */ } sketch.setup = () => { sketch.createCanvas(640, 480); sketch.background('#fff'); } sketch.draw = () => { // } });