in reply to Re^4: Debugger and lexicals
in thread Debugger and lexicals
$ cat /tmp/Foo.pm package Foo; sub DESTROY { print "DESTROY\n" } my $a = bless {}; print "executing Foo\n"; $ perl -I/tmp -e'use Foo; BEGIN { print "BEGIN\n" }' executing Foo DESTROY BEGIN
Dave.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Debugger and lexicals
by Anonymous Monk on Aug 07, 2011 at 13:37 UTC | |
by dave_the_m (Monsignor) on Aug 07, 2011 at 15:35 UTC |