xxxxxxxxxx
19
// cc teddavis.org 2020 for glitch.js
let hotdog;
let glitch;
function preload() {
hotdog = loadImage('leaf.png');
}
function setup() {
createCanvas(734,400);
background(222);
}
function draw(){
image(hotdog, 0, 0);
}