Help for this page

Select Code to Download


  1. or download this
    sub my_map (&@){
        my $code_ref = shift;
        my @d ;
        push @d, $code_ref->($_) for @_;
        return @d;
    }
    
  2. or download this
    sub my_map (&@){
        my $code_ref = shift;
        my @d = @_;
        $_ = $code_ref->($_) for @d;
        return @d;
    }