NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Why is the Smalltalk way superior? (Score:2)
I still don't understand why the Smalltalk way of ifTrue: and ifFalse: is superior to if/else. Can you please explain?
Other than that, one thing I can think of is the Scheme/SICP [mit.edu] way of handling linked lists using car, cdr, cons, and recursion. This makes the code much more robust and much less error prone than using pointer games, as is often the case in C. Funnily enough, when I wrote similar code in Common Lisp, the people on #lisp on Freenode told me that I shouldn't use recursive helper functions like that.
Reply to This