Help for this page

Select Code to Download


  1. or download this
    my @array = qw ( 1 2 3 4 5 );
    my $num = 6;
    ...
       my ( @list, $single ) = @_;
       print @list;
    }
    
  2. or download this
    123456
    
  3. or download this
    my @array = qw ( 1 2 3 4 5 );
    my $num = 6;
    ...
       my ( $list, $single ) = @_;
       print @$list;
    }
    
  4. or download this
    12345