Help for this page

Select Code to Download


  1. or download this
    my $fh = $self->{fh};
    print $fh "Hello world\n";
    
  2. or download this
    print { $self->{fh} } "Hello world\n";
    
  3. or download this
    use IO::Handle qw( );
    $self->{fh}->print("Hello world\n");