Try this as an example
int a = 0;
void setup() {
size(640, 600);
}
void draw() {
background(51);
fill(255, 212, 0);
a ++;
a %= 300;
text("Hello World", a, a);
}
Try this as an example
int a = 0;
void setup() {
size(640, 600);
}
void draw() {
background(51);
fill(255, 212, 0);
a ++;
a %= 300;
text("Hello World", a, a);
}