Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove empty color name.
[graphlib_java.git] / Hello.java
1 class Hello {
2
3     public static void main(String[] args) {
4         // Création d'une fenêtre avec, en paramètres, son titre, sa
5         // largeur et sa hauteur
6         DrawingWindow w = new DrawingWindow("Hello", 640, 480);
7
8         // Affichage d'un court message au milieu de la fenêtre
9         w.drawText(w.width / 2, w.height / 2, "Hello world!");
10     }
11 }