Linked by Eugenia Loli-Queru on Mon 25th Sep 2006 05:29 UTC
General Development You've decided to expand your horizons. You've been programming exclusively in Java (or C++, or Perl, or Ruby) for a while now. You're happy and productive, but you have this nagging feeling that you're solving problems by rote rather than thinking as creatively as you once did. Learning a new language, especially one that forces you to re-examine some of your notions about software development, may be just the ticket.
Thread beginning with comment 165453
To view parent comment, click here.
To read all comments associated with this story, please click here.
RE: smalltalk is incredible
by Get a Life on Mon 25th Sep 2006 17:23 UTC in reply to "smalltalk is incredible"
Get a Life
Member since:
2006-01-01

Lisp is the father of dynamic languages. Garbage collection and dynamic typing before Smalltalk ever existed.

Smalltalk actually received a fair amount of corporate funding. Heck, I was programming in VisualAge Smalltalk in 1995. It probably doesn't work out to be anything like what Java obtained marketing-wise, but Java was fortunate-enough to ride the Internet bubble while Smalltalk was falling out of favor.

I would that it is one of the two best programming languages not really used in the mainstream.

Dolphin Smalltalk is definitely quite slick.

The source code for the Strong Talk system was recently released by Sun.

Edited 2006-09-25 17:23

Reply Parent Bookmark Score: 3

youknowmewell Member since:
2005-07-08

"Lisp is the father of dynamic languages. Garbage collection and dynamic typing before Smalltalk ever existed."

Although this is true, I'd like to mention that Common Lisp borrowed its OO system from Smalltalk, and so have influenced each other.

Reply Parent Bookmark Score: 1

Get a Life Member since:
2006-01-01

CLOS is a multiple dispatch system based around the idea of generic functions, while Smalltalk is a single dispatch system modeled around message passing. CLOS circuitously derives from similarities with Smalltalk via LOOPS. CLOS however is not that much like the Smalltalk object model.

http://www2.parc.com/istl/members/stefik/loops.html
http://www.dreamsongs.com/NewFiles/ECOOP.pdf

Reply Parent Bookmark Score: 1