Help for this page
my @list; @list = @_ if ( @_ > 0 ); # (using the "safe" form) # when no args have been passed, @list is empty (undef) at this point. +..
my @list = @_; # when no args have been passed, @list is empty (undef) at this point. +..