On Mon, Sep 19, 2005 at 02:21:43PM +0000, Ingo Blechschmidt wrote:
> So...:
> 
>     [EMAIL PROTECTED];         # Reference to array, of course
>     \(@array);       # same
>     \(((@array)));   # same
> 
>     \(1,2,3);        # Reference to a list promoted to an array (!)
>     \(((1,2,3)));    # same
> 
>     [EMAIL PROTECTED];        # List of references to @array's elements
>     \*(((@array)));  # same
> 
>     \*(1,2,3);       # List of references to @array's elements
>     \*(((1,2,3)));   # same
> 
> Opinions?

Off the cuff, I'd say that works for me.  Also, wouldn't we have this?

        \list 1,2,3     # reference to a list promoted to an array

-Scott
-- 
Jonathan Scott Duff
[EMAIL PROTECTED]

Reply via email to