Hi!I use Appender a lot, and find it ugly to write this all the time to efficiently construct strings:
app.put("foo");
app.put(var);
app.put("bar");
How about this instead?
app.put("foo", var, "bar");
This would be consistent with the writeln interface, and it could
also reduce the syntax overhead of using appenders vs string
concats.
Was this overlooked or is there some issue I am not seeing? :) Cheers, -M
