Help for this page

Select Code to Download


  1. or download this
    package 'test.pm'
    use Moose;
    ...
       $self->{tempfile} = File::Temp->new(UNLINK => 1, SUFFIX => '.tmp');
       print $self->{tempfile} "I am here";
    }
    
  2. or download this
    String found where operator expected at test.pm line 16, near "} "I am
    + here""
            (Missing operator before  "I am here"?)
    
  3. or download this
    $self->{tempfile} = File::Temp->new(UNLINK => 1, SUFFIX => '.tmp');
    my $tmp = $self->{tempfile};
    print $tmp "I am here";