Stefan Lang wrote: > Interesting. Someone there said that Python is more like Java > and Ruby is more like Smalltalk. I've never written any > Smalltalk, but I know some Lisp. IMO, Ruby and Python are both > somewhere between Lisp and Java, Python closer to Java, Ruby > closer to Lisp. > Ultimate object orientation, continuations and blocks/closures - the last is very very smalltalkish ;D Smalltalk at: #a put: (Array new: 2)! a at: 1 put: 'some string'. a at: 2 put: 'some other string'. a do: [:n| n printNl]. a=[] a << 'some string' a << 'some other string' a.each{|n| n.display} The similarity is obvious. lopex