Merged branch subtype-trunk into default.
[cacao.git] / tests / stack / hello1.java
1 public class hello1 {
2         static int f() {
3                 return 100;
4         }
5         public static void main(String[] s) {
6                 for (int i=0;i<f(); i++) {
7                         System.out.println(i);
8                 }
9                 
10                 int i=0;
11                 while (i<f()) {
12                         System.out.println("i+1");
13                         i=i+1;
14                 }
15
16         }
17 }