Help for this page

Select Code to Download


  1. or download this
        my @good = grep(s/../../, readdir(DIR));
    or
        my @better = grep({-f "./$_", readdir(DIR));
    
  2. or download this
        my $ar = \@somearray;
        my @array = @somearray;
    ...
            );
            wantarray? @interesting: \@interesting;
        }