Help for this page

Select Code to Download


  1. or download this
    use IO::Handle;
    use IO::File;
    ...
    STDOUT->fdopen($out, 'w')
        or die $!;
    print "hello, world!";
    
  2. or download this
    use IO::Handle;
    use IO::Scalar;
    ...
    STDOUT->fdopen($out, 'w')
        or die $!;
    print "hello, world!";