i have the book &quot;Squeak by Example&quot; and i&#39;m reading about that right now!<br><br>
<div><span class="gmail_quote">On 1/3/08, <b class="gmail_sendername">Carlos Lenz</b> &lt;<a href="mailto:carlos.lenz@gmail.com">carlos.lenz@gmail.com</a>&gt; wrote:</span>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">Hi David<br><br>Since this is your first Smalltalk project, understanding the roles of<br>messages, objects and classes from the POV of ST will help you.
<br><br>There are pretty good introductions to ST and/or OO concepts, like this one:<br><br><a href="http://www.chronos-st.org/Smalltalk-Getting-the-Message.html">http://www.chronos-st.org/Smalltalk-Getting-the-Message.html
</a><br><br><br>Cheers<br><br>Carlos<br><br>On Jan 3, 2008 1:22 PM, David Zmick &lt;<a href="mailto:dz0004455@gmail.com">dz0004455@gmail.com</a>&gt; wrote:<br>&gt; ok, Thanks!&nbsp;&nbsp;that clears it up a lot!!<br>&gt; happy coding!
<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; On 1/3/08, Herbert König &lt;<a href="mailto:herbertkoenig@gmx.net">herbertkoenig@gmx.net</a>&gt; wrote:<br>&gt; &gt; Hello David,<br>&gt; &gt;<br>&gt; &gt; DZ&gt; One more question...How do I know when i need to use a class
<br>&gt; &gt; DZ&gt; method instead of an instance method?<br>&gt; &gt;<br>&gt; &gt; the obvious reply is: If you want to talk to the class you need a<br>&gt; &gt; message implemented as a class side method. Examples:<br>
&gt; &gt;<br>&gt; &gt; a := Float pi<br>&gt; &gt; asks the class Float to return an instance of Float with the value of<br>&gt; &gt; pi. So you&#39;ll find the method pi implemented on the class side of<br>&gt; &gt; float.
<br>&gt; &gt;<br>&gt; &gt; then a:=&nbsp;&nbsp;a + 3.0 talks to an instance of Float so you&#39;ll find +<br>&gt; &gt; implemented on the instance side of Float (or on of its superclasses).<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; Cheers,
<br>&gt; &gt; Herbert&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mailto:<a href="mailto:herbertkoenig@gmx.net">herbertkoenig@gmx.net</a><br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br><br></blockquote></div>
<br>