xxxxxxxxxx
20
function setup() {
createCanvas(400, 400);
// for(let i = 0; i < 10; i++) {
// console.log(frameCount, i);
// }
count(0);
}
function count(num) {
console.log(num);
num++;
if(num < 10) {
count(num);
}
}
// function draw() {
// background(220);
// }