http://qs1969.pair.com?node_id=52356


in reply to Re: TIMTOWTDI -- so long as it's not my way
in thread TIMTOWTDI -- so long as it's not my way

(Since your question leads us off the Perl path anyway...) Smalltalk does, but with different syntax. For example, take the following Array of Strings:

| temp | temp := #('one' 'two' 'three'). Transcript show: (temp at: 1).

The line Transcript show: (temp at: 1). will print the string "one".

My training was with C++/C, and on the new job, we get to use Smalltalk. So I've been having the opposite problem that you've been having. :-)