xxxxxxxxxx
21
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
// draw lots of vertical lines
// if i is less than width, increase i by 10
for(let i = 0; i < width; i+=10){
// i is equal to 0, 10, 20, 30, 40, 50, 60, 70, etc...
// line(300, 1, i, i);
text('hello',i,i)
text('bonjour', i/2,i)
line(400, 1, 200,i);
circle(10,i,i,i);
line(i, 0, 200,i);
}
}