> Two things i think is good to have it :
>
> 1. ALIAS keyword.
> - first reason is 'cause many people don't know that this is possible.. at
> least any newscommer and it will help not to forgot that it exist :").
> - Code become more readable.
> - can be Overloaded
> - the syntax for aliasing can become reicher :")
Would you like to clarify what you mean here.
Are you talking about typeglob assignments?
Perl 6 will have:
$Foo::{'$bar'} = \$baz; # Alias $Foo::bar to $baz
> 3. For this I'm not totaly sure, but it comes to my mind.... many modules
> uses notation like this to pass params i.e.
>
> someFunc ( -param1 => 'blah', param2 => 'xxx' .....)
>
> Why not have %_ in our case we have the following elements :
http://dev.perl.org/rfc/128.html#Named_arguments
Damian