}
public static void main(String[] args) throws IOException {
DeferringMustacheFactory mf = new DeferringMustacheFactory();
mf.setExecutorService(Executors.newCachedThreadPool());
Mustache m = mf.compile("deferring.mustache");
PrintWriter pw = new PrintWriter(System.out);
m.execute(pw, new DeferredExample()).close();
}
}