Bart Lateur <[EMAIL PROTECTED]> writes:

> On Wed, 25 Apr 2001 15:52:47 -0600 (MDT), Dan Brian wrote:
> So why not
> 
>       $object!method("foo", "bar");

In my opinion, because it doesn't provide sufficient visual
distinction between $object and method().  At a glance, especially on
a crowded page, it's similar in appearance to $objectImethod, for
instance.  $object.method() has a visual separator (although I'd
prefer $object->method()).

How about borrowing from Objective C?

       [$object method("foo", "bar")];

(If we really wanted to steal from Objective C, we'd use:

       [$object method:"foo":"bar"]

but it seems Larry has claimed the colon.)

> 
> -- 
>       Bart.

Reply via email to