blob: df3c53df327c0c2902dd671f65fa41f35d4f5854 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package com.mesonbuild;
import com.mesonbuild.Config;
class Simple {
public static void main(String [] args) {
if (Config.FOOBAR) {
TextPrinter t = new TextPrinter("Printing from Java.");
t.print();
}
}
}
|