Help for this page

Select Code to Download


  1. or download this
    open(my $z, '| more'); # stupid call, just an example!
    print ("Exists: ", -e $z, "\n");
    close($z);
    print ("\nExists: ", -e $z, "\n");
    
  2. or download this
    Exists: 1
    Exists: