blob: df3c53df327c0c2902dd671f65fa41f35d4f5854 [file] [log] [blame]
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();
}
}
}