Help for this page

Select Code to Download


  1. or download this
    my $ofh = *STDOUT;
    $ofh->print("test 1\n");
    
  2. or download this
    my $ofh = \*STDOUT;
    $ofh->print("test 2\n");
    
  3. or download this
    STDOUT->print("test 3\n");