xxxxxxxxxx
17
let earthquakes;
function setup() {
loadBytes('https://www.gocomics.com/pearlsbeforeswine/2021/12/15',gotData);
createCanvas(400, 400);
noLoop();
}
function gotData(data){
println(data);
}
function draw() {
background(220);
}