Help for this page

Select Code to Download


  1. or download this
    t|d => dd
    
  2. or download this
    dd => t|d
    
  3. or download this
    my @results = functional_unglue( @arguments );
    
  4. or download this
    use strict;
    use Data::Dumper;
    ...
    
    print Dumper([@results]);
    
  5. or download this
    sub functional_unglue {
        my %x = @_;
    ...
        } @r
    }
    
  6. or download this
    use strict;
    use Data::Dumper;
    ...
    @z = map{join('-',@$_)}@z;
    print Dumper([@z]);
    
  7. or download this
    $VAR1 = [
              'cowboy-cat-dog',
              'cow-boy-cat-dog'
            ];
    
  8. or download this
    my @z = functional_unglue (
        target     => 'zivAzvaH',
    ...
    @z = map{join('-',@$_)}@z;
    print Dumper([@z]);
    
  9. or download this
    $VAR1 = [
              'ziva-azvas',
    ...
            ];
    
  10. or download this
    use strict;
    use Data::Dumper;
    ...
    );
    @z = map{join('-',@$_)}@z;
    print Dumper([@z]);