<div dir="ltr"><div class="gmail_extra">Click on the button in the bottom left corner of DrRacket, then on "Show details", then select another printing style.<br><br></div><div class="gmail_extra">Here are some differences between the 4 styles:<br>

</div><div class="gmail_extra"><br>#lang racket<br>(struct A (x y) #:transparent) ; for the examples below<br><br>(list 'xxx '(5 . ,a) (vector 'a 'b) (A 2 3))<br><br></div><div class="gmail_extra">; constructor<br>

</div><div class="gmail_extra">; (list 'xxx (list 5 'unquote 'a) (vector 'a 'b) (A 2 3))<br><br>; quasi-quote<br>; `(xxx (5 ,'unquote a) #(a b) ,(A 2 3))<br><br></div><div class="gmail_extra">; write<br>

</div><div class="gmail_extra">; (xxx (5 . ,a) #(a b) #(struct:A 2 3))<br><br></div><div class="gmail_extra">; print<br></div><div class="gmail_extra">; (list 'xxx '(5 unquote a) '#(a b) (A 2 3))<br><br></div>

<div class="gmail_extra">Personally, I generally use the "write" style. I wonder what other people prefer.<br><br></div><div class="gmail_extra">Laurent<br></div><div class="gmail_extra"><br></div><div class="gmail_extra">

<br><div class="gmail_quote">On Tue, Jun 17, 2014 at 4:40 PM, Jason Hemann <span dir="ltr"><<a href="mailto:jhemann@umail.iu.edu" target="_blank">jhemann@umail.iu.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">

<div dir="ltr"><span style="font-family:monospace">Hi,</span><div style="font-family:monospace"><br></div><div style="font-family:monospace">How do I make Racket's printer abbreviate unquote at the end of a list? See the difference in behavior between racket and petite chez below. </div>


<div style="font-family:monospace"><br></div><div style="font-family:monospace"><div>bash-3.2$ <span style="background:none repeat scroll 0% 0% rgb(255,255,204)">petite</span></div><div><span style="background:none repeat scroll 0% 0% rgb(255,255,204)">Petite</span> Chez Scheme Version 8.3</div>


<div>Copyright (c) 1985-2011 Cadence Research Systems</div><div><br></div><div>> '(5 . ,a)</div><div>(5 . ,a)</div><div>> </div><div>bash-3.2$ <span style="background:none repeat scroll 0% 0% rgb(255,255,204)">racket</span> </div>

<div>Welcome to <span style="background:none repeat scroll 0% 0% rgb(255,255,204)">Racket</span> v6.0.1.</div>
<div>> '(5 . ,a)</div><div>'(5 unquote a)</div><div>></div></div><div style="font-family:monospace"><br></div><div style="font-family:monospace">Thanks,</div><div style="font-family:monospace"><br></div><div style="font-family:monospace">


JBH</div></div>
<br>____________________<br>
  Racket Users list:<br>
  <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
<br></blockquote></div><br></div></div>