Help for this page

Select Code to Download


  1. or download this
    open my $fh, '<', 'an_unlikely_file' 
        or print "Not opened\n";
    if ($fh) {
        print "But $fh evaluates to true\n"
        }
    
  2. or download this
    Not opened
    But GLOB(0x183f070) evaluates to true