Help for this page

Select Code to Download


  1. or download this
    open(FOO,$foo) || die "Can't open $foo: $!";
    
  2. or download this
    die "Can't open $foo: $!" unless open(FOO,$foo);
    
  3. or download this
     
    print "Starting analysis\n" if $verbose;
    
  4. or download this
    $verbose && print "Starting analysis\n";