Help for this page

Select Code to Download


  1. or download this
    sub foo_ize {
      for my $val (@_) {
    ...
    my @arr = qw( baz bar baz BarBar );
    foo_ize @arr;
    print join ",", @arr;
    
  2. or download this
    sub foo_ize_val {
      my @args = @_;
    ...
    print join ",", @arr;
    @arr = foo_ize @arr;
    print join ",", @arr;