int x=0; // Initialise le sketch void setup(){ size (300,300); stroke(255); framerate(30); } //procˇdure d'affichage void draw(){ background(51); line(x,0,x,height); x += 10; if(x>=width) { x=0; } }