On 07/14/2011 11:47 PM, Parrot Raiser wrote:
> When a subroutine is invoked with an empty parameter list, as follows:
> 
> run_stuff();
> 
> sub run_stuff {
>     my ($parm) = @_;
>     say "Parameter is $parm";
> }
> 
> @_[0] contains "Any()".

Not "Any()", but Any (which say() prints as "Any()" to ease debugging)

> Should it?

Yes.

Reply via email to