ifとforの原型
int count = 0; void setup() { size(400, 400); frameRate(30); } void draw() { count++; background(255); if (count < 90) { fill(255, 0, 0); } else { fill(0, 0, 255); } ellipse(200, 200, 50, 50); }