Help for this page

Select Code to Download


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