Help for this page

Select Code to Download


  1. or download this
    open my $filea, "<", "Population.txt" or die "Cannot open: $!\n";
    
    my @Data = <$filea>;
    
  2. or download this
    # ...
    
    foreach my $line (@Data) {
        # do something with $line
    }
    
  3. or download this
    open my $filea, "<", "Population.txt" or die "Cannot open: $!\n";
    
    while(<$filea>) {
        # do something with $_
    }