> -----Original Message-----
> From: Larry Wall [mailto:[EMAIL PROTECTED]
> Sent: Thursday, January 22, 2004 12:50 PM
> To: Language List
> Subject: Re: Semantics of vector operations
>
>
> On Thu, Jan 22, 2004 at 03:57:26AM +0100, A. Pagaltzis wrote:
> : * Piers Cawley <[EMAIL PROTECTED]> [2004-01-21 23:33]:
> : > And once you go to an image based IDE and have access to the
> : > bytecode of the code you're writing there's all *sorts* of
> : > interesting things you can do. And that's before one starts to
> : > imagine attaching the IDE/debugger to a running process...
> :
> : $smalltalkometer++ ? :)
>
> %languageometer.values �+=� rand;
>
> Not to be confused with
>
> %languageometer.values �+= rand;
>
> which would presumably add the *same* number to all languageometers.
>
In reverse order:
> %languageometer.values �+= rand;
This is the same as
all( %languageometer.values ) += rand;
right?
And is this
> %languageometer.values �+=� rand;
the same as
all( %languageometer.values ) += one( rand );
?
=Austin