Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Correct size and bbox for rectangles and circles.
[graphlib_java.git] / Hello.java
1 public class Hello {
2
3     public static void main(String[] args) {
4         DrawingWindow w = new DrawingWindow("Exemple 1", 640, 480);
5
6         w.drawText(w.width / 2, w.height / 2, "Hello world!");
7     }
8
9 }