<br><br><div><span class="gmail_quote">On 2/21/07, <b class="gmail_sendername">J J</b> &lt;<a href="mailto:azreal1977@hotmail.com">azreal1977@hotmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
+1.&nbsp;&nbsp;Just please, no colons.&nbsp;&nbsp;Or at least make it configurable so I don&#39;t<br>have to see it. :)&nbsp;&nbsp;The best would be if direct namespace access looked like<br>normal message sends.</blockquote><div><br>What would you suggest? I could use any non-whitespace character, I think.
<br><br>Currently I&#39;m using dots:<br><br>a := Collections.Arrayed.Array new: 5.<br></div><br>Usually though you&#39;d just use:<br><br>a := Array new: 5.<br><br>and add the Collections.Arrayed Namespace to your import list. Each import list is common to all classes at a certain branch of the Namespace hierarchy, so the dotted notation is only useful if, in the same branch of the Namespace hierarchy, you want to use two classes (or global vars) that have the same name.
<br><br>I&#39;m not entirely sure how I&#39;d implement your message sending idea, and
it doesn&#39;t particularly feel &quot;right&quot; to me. I assume you mean:<br>
<br>
a := Collections Arrayed Array new: 5.<br>
<br>Michael.<br></div>