basically what the title says - for debugging purpose I want to get the version as a constant variable. I checked each variable in “this” but didn’t get anything relevant matches /version/i
function setup() {
createCanvas(400, 400);
console.log(Object.keys(this).filter(s=>s.match(/version/i)))
}
function draw() {
background(220);
}