Help for this page

Select Code to Download


  1. or download this
    while ($line = <$fh>) {
        # ...
    }
    
  2. or download this
    while (defined($line = <$fh>)) {
        # ...
    }
    
  3. or download this
    my @a = qw( 1 2 3 4 5 );
    
    ...
    Next value =
    Size of @a = 0
    Next value =