in reply to Re^2: Why shows B::Deparse __END__ as __DATA__? (BUG #1)
in thread Why shows B::Deparse __END__ as __DATA__?
lanx@nc10-ubuntu:/tmp$ cat use_wrong.pl use wrongdata; print <DATA>; package TST; 1; __END__ end lanx@nc10-ubuntu:/tmp$ perl use_wrong.pl end lanx@nc10-ubuntu:/tmp$ cat wrongdata.pm package TST; 1; __DATA__ wrongdata lanx@nc10-ubuntu:/tmp$ perl -MO=Deparse use_wrong.pl use wrongdata; print <DATA>; package TST; '???'; package TST; __DATA__ wrongdata use_wrong.pl syntax OK
Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
see Re^2: Why shows B::Deparse __END__ as __DATA__? for explanation!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Why shows B::Deparse __END__ as __DATA__? (BUG #3)
by LanX (Saint) on Oct 12, 2014 at 15:26 UTC | |
by karlgoethebier (Abbot) on Oct 12, 2014 at 17:10 UTC |