Help for this page

Select Code to Download


  1. or download this
    display(@data);
    
  2. or download this
    for my $dir (@dirs){ # idiomatic perl way to loop over a list
        print "$dir\n";
    }
    
  3. or download this
    sub display {
    
    ...
            print "$dir\n";
        }
    }