Help for this page

Select Code to Download


  1. or download this
    while (my $line = <$fh>) {
    
  2. or download this
    while (defined( my $line = readline($fh) )) {
    
  3. or download this
    if (my $x = func()) {
        print "$x accesible here";
    ...
       print "and also here: $x";
    }