Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Give list of color names.
[graphlib_java.git] / Hello.java
index e7b6dfa..51dd9f5 100644 (file)
@@ -1,8 +1,11 @@
 public class Hello {
 
     public static void main(String[] args) {
+        // Création d'une fenêtre avec, en paramètres, son titre, sa
+        // largeur et sa hauteur
         DrawingWindow w = new DrawingWindow("Exemple 1", 640, 480);
 
+        // Affichage d'un court message au milieu de la fenêtre
         w.drawText(w.width / 2, w.height / 2, "Hello world!");
     }
 }