Help for this page

Select Code to Download


  1. or download this
    (my $line); # scoped outside of `while` block
    while ($line = <>) {
    
    }
    
  2. or download this
    while (my $line = <>) { # $line scoped only inside of `while` block
    
    }