HashMap<String, Object> scopes = new HashMap<String, Object>();
scopes.put("name", "Mustache");
scopes.put("feature", new Feature("Perfect!"));
Mustache mustache = mf.compile(new StringReader("{{name}}, {{feature.description}}!"), "example");
Writer stdout = new OutputStreamWriter(System.out);
mustache.execute(stdout, scopes);
stdout.flush();
}