Help for this page

Select Code to Download


  1. or download this
    while (<JOE>) {
    
  2. or download this
    my @data = <JOE>;
    
  3. or download this
    my @data;
    while (<JOE>) {
        push @data, $_;
    }
    
  4. or download this
    use strict;
    use warnings;