xxxxxxxxxx
21
function setup() {
createCanvas(400, 400);
print("While loop:");
let i = 0;
while (i<10){
print(i);
i++;
}
print("For loop:");
for (let i=0; i<10; i++){
print(i);
}
}
function draw() {
background(220);
}