List<String> ps = Arrays.asList(new String[] {"a", "b", "c"});
int in = 0;
int c = 0;
while ('q' != in) {
for (c = 0; c < 50000; c++) {
EachCall call = new EachCall();
String string = call.render(ps).getContent().toString();
baos.write(c + string.length());
}
System.out.println("ready:");
in = System.in.read();
System.out.println("got: " + (char)in);