<p>Well put! Please can someone with permissions capture this on our swiki? </p>
<p>Gary Dunn<br>
Open Slate Project<br>
<a href="http://openslate.org">http://openslate.org</a></p>
<p><blockquote type="cite">On Nov 22, 2011 1:35 AM, &quot;Bert Freudenberg&quot; &lt;<a href="mailto:bert@freudenbergs.de">bert@freudenbergs.de</a>&gt; wrote:<br><br>(This is from an answer to a question on StackOverflow <a href="http://stackoverflow.com/questions/8222489" target="_blank">http://stackoverflow.com/questions/8222489</a> It might be helpful to some newbies on this list so I&#39;m re-posting)<br>

<br>
===================================<br>
Q: (paraphrased) I want to learn Smalltalk but without the baggage of an IDE. Just let me use my favorite text editor, that&#39;s much easier.<br>
<br>
A: It is not helpful to learn Smalltalk as just another language. You would be missing the point entirely.<br>
<br>
Smalltalk&#39;s graphical environment is not just an IDE. The core of the system is simply objects. The interface provides various ways to create objects and interact with them. The language is just a convenient way to create messages to the objects. It is secondary to the objects themselves.<br>

<br>
In other OO languages, you write your program, then you run it, which creates objects in memory. Not so in Smalltalk. You create objects in memory (e.g. class objects) and then send messages to e.g. add methods. But a class object is only created once, not every time you &quot;run your program&quot;.<br>

<br>
There is no such thing as &quot;your program&quot;, in fact. There is no &quot;main&quot;. It&#39;s just a world of objects, some longer-lived, some temporary. In fact, in the system there are objects that were created 30 years ago. Literally. The objects are just frozen to disk as a memory dump (a file which we call &quot;image&quot;) and unfrozen later (possibly on a different machine).<br>

<br>
That image, the world of objects, is the primary artifact in Smalltalk. There is a sources file, yes, but that&#39;s just a database of text snippets to not take up so much RAM. You cannot edit this file by hand (objects in the image use absolute file offsets into the sources file). You cannot re-create the system from the sources file - the system was bootstrapped a long time ago and from then on only modified.<br>

<br>
It&#39;s true that superficially the Smalltalk GUI looks just like another IDE. No coincidence - Eclipse was originally written by Smalltalkers in Smalltalk. But there is the crucial difference that in regular IDEs you just manipulate text files. A text editor is a valid alternative for that. In Smalltalk, the GUI manipulates objects in memory. A text editor can not do that.<br>

<br>
And as for what Smalltalk to use, I would recommend Squeak. Very friendly community, very nice environment, and subscribing to the original Smalltalk vision of creating a great personal computing environment for everyone.<br>

<br>
- Bert -<br>
<br>
<br>
_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@lists.squeakfoundation.org">Beginners@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/mailman/listinfo/beginners" target="_blank">http://lists.squeakfoundation.org/mailman/listinfo/beginners</a><br>
</blockquote></p>