The popular answer above - that Smalltalk use (or dynamic languages in general) leads to lots of type errors is just silly. I've been developing in Smalltalk for over a decade, and used C for many years before that. What leads to type errors is a weak typing system and static checks.
In Smalltalk, keyword messages make it much less likely that you'll get a type error. An example:
server startOnPort: portNumber hostName: hostName
would be something like:
server.startOnPortAndHost (portNumber, hostName);
in a language like C++, Java, or C#C#.
Which one is more likely to lead to argument transposition? There's a whole class of numeric errors that simply never happen, because you can't overflow or underflow. For instance:
1000 factorial
just yields a very large number; I didn't have to worry about whether I needed a BigNumber class or not (the numbers auto-promote as needed)needed).
