Matthew Robb (2014-12-16T15:40:38.000Z)
d at domenic.me (2014-12-19T22:52:22.993Z)
I might be wrong and either way it's probably too ugly to be serious but couldn't you, using a template tag, do something like the following: ```js var template = compile` Hello ${"first_name"} `; template({ first_name: "John" }); ```