Help for this page

Select Code to Download


  1. or download this
    open(OUTPUT, '>-') or die;
    print OUTPUT "foo\n";
    
  2. or download this
    open(OUTPUT, ">", '-')
    print "foo\n";