in reply to Hash-bang in pod can cause older versions of perl to fail

Try it in another way:
#!/usr/bin/perl use strict; use warnings; print "hi", "\n"; =pod =head1 HASHBANG Start your scripts with #!/usr/bin/perl. =cut __END__

Replies are listed 'Best First'.
Re^2: Hash-bang in pod can cause older versions of perl to fail
by Anonymous Monk on Mar 31, 2010 at 22:08 UTC
    Why? That wouldn't show the warning I am asking about (my actual question that I asked)