I'm trying do do the following (which was the recommended
technique for perl2exe); but it doesn't work with PAR.

pod2usage(-verbose => 2, -input => \*main::DATA);

Nothing I've tried so far works with PAR,
not even something as simple as:

print $_ foreach (<DATA>);

Can anyone tell me whats wrong?


------- sample code -------

use Pod::Usage;
pod2usage(-verbose => 2, -input => \*main::DATA);
__END__

=pod

this is my pod

=cut

Reply via email to