Like Lisps quasiquote (QQ)
WYSIWYG / concrete representation of code within #{}s
#{ if (isOn()) turnOff(); }
Evaluation of codeQuote yields skeleton form representation of code
Quoting is turned off with ? (like QQs comma)
Variables: ?x
Expressions: ?(f(x))