Get it! Thanks.<br><br><div class="gmail_quote">2012/12/20 Mike G. <span dir="ltr">&lt;<a href="mailto:mikeg@psg.com" target="_blank">mikeg@psg.com</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
&gt; class: field element is not an optionally renamed identifier-expression<br>
&gt; pair<br>
&gt;   at: ((x 10))<br>
&gt;   in: (class object% (super-new) (displayln &quot;hello world&quot;) (field ((x<br>
&gt; 10)))<br>
&gt; (displayln x))<br>
<br>
There was an extra pair of parentheses around (x 10).  Try this:<br>
<br>
(new (class object%<br>
       (super-new)<br>
       (displayln &quot;hello world&quot;)<br>
       (field [x 10])<br>
       (displayln x)))<br>
</blockquote></div><br>