Hacker News new | ask | show | jobs
by skohan 2132 days ago
Neat. It's interesting that they've chosen just plain braces to denote the argument insertion; i.e: "text {value}" rather than something like "text ${value}" which seems to be what most languages use. I guess there must be a way to escape it if you just want braces in your string.
1 comments

Right, there is a way - to escape braces and print "text {value}" rather than the actual value, you'd use "text {{value}}"