<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">// Ces programmes sont sous licence CeCILL-B V1.
class CarreRouge {

  public static void main (String [] args) {
    int x,y;
    Isn.initDrawing("CarrÃ© rouge",10,10,400,400);
    for (x = 100; x &lt;= 250; x = x + 1) {
      for (y = 50; y &lt;= 200; y = y + 1) {
        Isn.drawPixel(x,y,255,0,0);}}}}


</pre></body></html>