aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/java/2 subdir/sub/com/mesonbuild/Simple.java
blob: 05a73acccaa2e7340b87f3b6eeeb45feb8e46595 (plain)
1
2
3
4
5
6
7
8
package com.mesonbuild;

class Simple {
    public static void main(String [] args) {
        TextPrinter t = new TextPrinter("Printing from Java.");
        t.print();
    }
}