Help for this page

Select Code to Download


  1. or download this
    use IO::Handle;
    
    pipe(READER, WRITER);
    ...
        close READER;    # don't have to be explicit
        exit;
    }
    
  2. or download this
    local *$read;
    local *$write;