System.out.println("complex.html evaluations per millisecond:");
for (int i = 0; i < 3; i++) {
{
DefaultMustacheFactory cf = new DefaultMustacheFactory();
cf.setObjectHandler(new JRubyObjectHandler());
Mustache m = cf.compile("complex.html");
Object context = makeComplex();
assertEquals(getContents(root, "complex.txt"), complextest(m, context).toString());
long start = System.currentTimeMillis();
int total = 0;
while (true) {