Re: Am I going nutts ? - read before answering!

2001-03-08 Thread Leo Lapworth
On Thu, Mar 08, 2001 at 02:59:27PM +, Robert Price wrote: I think the answer is that both the modules where the BEGINS are called twice have "use" in them. "use" means "BEGIN {require Module}", so BEGIN is being called once when the module is entered, and once when it is used. Rob -

Re: Am I going nutts ? - read before answering!

2001-03-08 Thread Robert Price
At 02:52 PM 3/8/01 +, you wrote: On Thu, Mar 08, 2001 at 02:59:27PM +, Robert Price wrote: I think the answer is that both the modules where the BEGINS are called twice have "use" in them. "use" means "BEGIN {require Module}", so BEGIN is being called once when the module is entered,

Re: Am I going nutts ? - read before answering!

2001-03-08 Thread Leo Lapworth
Oh, actually do you mean it is the same at: pageage LTest; BEGIN {require Test2} BEGIN { warn "." } print "Here\n" 1; Ok, that kind'a make sence.. Cheers Leo - who is slowly getting there. On Thu, Mar 08, 2001 at 02:52:48PM +, Leo Lapworth wrote: On Thu, Mar 08, 2001 at

Re: Am I going nutts ? - read before answering!

2001-03-08 Thread Philip Newton
Leo Lapworth wrote: BEGIN { You forgot here: warn "In A.D. 2101\n"; warn "Test is beginning\n"; } print "Here\n"; And this should be 'print "What happen?\n";'. Cheers, Phi "SCNR" lip -- Philip Newton [EMAIL PROTECTED] All opinions are my own, not my employer's. If you're not

Re: Am I going nutts ? - read before answering!

2001-03-08 Thread Mark Fowler
Yup, that's right. So to get it to only have the one call, change your "use" to a require and put it in the BEGIN block. nitpick number="1" use fred; Will also call fred-import(), so you might want to emulate that too. /nitpick nitpick number="2" type="lesser" -- Robert Price -

Re: Am I going nutts ? - read before answering!

2001-03-08 Thread Robert Price
[snipped my numbers formated as 0207 XX] Shouldn't these numbers be formatted 020 7XXX Sh, it's designed to try to fool the sales bunnies. Rob