Help for this page

Select Code to Download


  1. or download this
    if ($fi eq "\n") ## WRONG in this case
    {
     exit;
    }
    
  2. or download this
    use warnings;
    use strict;
    ...
    if ( $fi eq "\n" ) {
        exit;
    }
    
  3. or download this
    Please press enter to quit 
    not ok 1 - should fail
    ...
    # '
    1..1
    # Looks like you failed 1 test of 1.