Help for this page

Select Code to Download


  1. or download this
    # object interface
    sub new {
    ...
        bless $self, $class;
        return $self;
    }
    
  2. or download this
    my $f = List->new;
    $f->look_in('c:/');
    ...
    foreach ($f->list) {  ##problem??
        print "${$f->{file}}\n";
    }