<div>Dear list members,<br></div><div><br></div><div>In &quot;Continue Web applications in Racket&quot; it gives this example of creating dynamic webpages using quosiquotes:</div><div>; render-greeting: string -&gt; response<br>
; Consumes a name, and produces a dynamic response.<br>(define (render-greeting a-name)<br>  (response/xexpr<br>   `(html (head (title &quot;Welcome&quot;))<br>          (body (p ,(string-append &quot;Hello &quot; a-name))))))</div>
<div><br></div><div>In &quot;Web applications in Racket&quot; it gives this example of creating dynamic webpages using @syntax in a template:</div><div>&quot;simple.html&quot; contains: </div><div>------------------------------------------------------------------------<br>
  &lt;html&gt;<br>   &lt;head&gt;&lt;title&gt;Fastest @thing in the West!&lt;/title&gt;&lt;/head&gt;<br>   &lt;body&gt;<br>    &lt;h1&gt;Bang!&lt;/h1&gt;<br>    &lt;h2&gt;Bang!&lt;/h2&gt;<br>   &lt;/body&gt;<br>  &lt;/html&gt;</div>
<div>------------------------------------------------------------------<br><br>(let ([thing &quot;Templates&quot;])<br>    (include-template &quot;simple.html&quot;))<br></div><div>============================</div><div><br>
</div><div>Can someone tell me, is there some advantage or added funtionality in using the @syntax in a template over the first example using quosiquotes?</div><div><br></div><div>Thanks in advance,</div><div>Harry Spier</div>
<div><br></div>