I have added a StringTemplate literal `...` (back quotes):
ST s = `public <name> = <init>;`; s["name"] = "Ter"; s["init"] = "34"; println(s.toString()); println(s["init"]);
emits
public Ter = 34; 34
The attributes of a template act like dictionary entries.
Nice...
I wonder if some similar integration with http://ptilde.pbwiki.com/ (mainly because its regexp engine) would worth.
Nice...
I wonder if some similar integration with http://ptilde.pbwiki.com/ 
;(mainly because its regexp engine) would worth.