in reply to Re^6: repeated use of module and EXPORT
in thread repeated use of module and EXPORT
The begin doesn't work without the our before it... is our also implicitly a BEGIN? otherwise I wouldn't think the our should effect the BEGIN block as it shouldn't even get executed until after the BEGIN block is done.our (@ISA,@EXPORT,@EXPORT_OK); BEGIN { @ISA = qw(Exporter); @EXPORT = qw(debugOn); @EXPORT_OK = qw(); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: repeated use of module and EXPORT
by ikegami (Patriarch) on May 24, 2008 at 06:23 UTC | |
|
Re^8: repeated use of module and EXPORT
by ikegami (Patriarch) on May 24, 2008 at 06:29 UTC | |
by rpelak (Sexton) on May 24, 2008 at 19:38 UTC | |
|
Re^8: repeated use of module and EXPORT
by shmem (Chancellor) on May 24, 2008 at 22:38 UTC |