aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata-java/java/HelloWorld.java
blob: d42146d6205840f3f87f58ee002ce46d6f367f72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package io.qt.qbs;

public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Tach.");
    }

    public class Internal {
        public native void something();
    }

    public class Other {
        public final int countOfThings = 0;
    }
}