What other programming languages have a Smalltalk-like message-passing syntax? What other programming languages have a Smalltalk-like message-passing syntax? objective-c objective-c

What other programming languages have a Smalltalk-like message-passing syntax?


Here is a list of languages supporting keyword messages syntax similar to Smalltalk:


In addition to the other languages mentioned here, Fancy:

osna = City new: "Osnabrück"p = Person new: "Christopher" age: 23 city: osnap printlnberlin = City new: "Berlin"p go_to: berlinp println


See e.g. Self.

Also, many languages support optional named parameters, e.g. Python or C# (starting with v4).