* src/threads/posix/thread-posix.cpp (threads_impl_thread_free): Removed. It was
[cacao.git] / tests / hi.java
1 public class hi {
2    public static void Ausgabe() {
3       System.out.println ("eine Zeile Text");
4    }
5
6    public static void main(String[] args) {
7       int i;
8       for (i=0; i<10; i++) Ausgabe();
9
10       System.out.println ("Juhu, das funktioniert");
11    }
12 }