Parrot Raiser Sat, 16 Jul 2011 15:47:40 -0700
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()". Should it?