Help for this page

Select Code to Download


  1. or download this
    sub create_output (\@$)  {
        
        my (@array_of_lines, $entry_no_new) = @_;
    
  2. or download this
    use feature ":5.14";
    use warnings FATAL => qw(all);
    ...
    
    my @array = qw(1 2 3);
    foo(@array);
    
  3. or download this
    1 2 3