Help for this page

Select Code to Download


  1. or download this
    use Modern::Perl;
    
    sub create_output (\@$) {
    ...
    }
    my @array = qw/1 2 3 4/;
    create_output @array, 5;
    
  2. or download this
    array:  1 2 3 4
    scalar: 5