A recent introduction to Smalltalk has enlightened me on the application and benefits of a 'pure' object oriented style. I'd previously seen the benefits of this in Ruby, though the presence of non object oriented if, unless etc. constructs seemed like it didn't carry things all the way through.
By pure here, I'm talking about things like 'everything is an object' (including functions via blocks or something similar) and no procedural-style flow control, instead using flow control methods on booleans & collections.
Yet, even in a language like Smalltalk some things stand out as not being object oriented. For example it doesn't seem possible to do variable assignment without using special syntax (:= instead of an 'is:' or similar method) and returning values from a function seems to require the ^ operator which doesn't seem to 'belong' to any object.
Are there any languages that carry this style even further?
self.result), but there's a reason we programmers usually try to keep the scope of everything as small as possible. Plus, it would break method chaining as there's no return value, unless you define some object property to be that value, but then we're back to magic. And the list goes on. – delnan Aug 29 '11 at 18:30