BBSpot has a quiz to decide “Which Programming Lanuguage Are You?” Look what I got:

Via Dave Snowden
Working software daily
BBSpot has a quiz to decide “Which Programming Lanuguage Are You?” Look what I got:

Jay Fields writes about using chaining for object initialisation.
One of the inspirations for the fluent interface style in jMock was a Smalltalk construct called cascade, which sends multiple message to the same object.
aThing one: 'one'; two: 'two'; other.
I just got fed up having to redeclare the same object
thing.setOne("one");
thing.setTwo("two);