in reply to Re: Re: Re: Re: Re: Scope Between global and my
in thread Scope Between global and my
Ok, here is what my code looks like. (Strict hates this)
local( $ItemNumber, %CFL, @CFD, #Customer %DFL, @DFD, #Destination %IFL, @IFD, #Item %MFL, @MFD, #Master %SFL, @SFD, #Description %UFL, @UFD #User );
How do I also declare these variables our ?
Not like this:
our local( $ItemNumber, %CFL, @CFD, #Customer %DFL, @DFD, #Destination %IFL, @IFD, #Item %MFL, @MFD, #Master %SFL, @SFD, #Description %UFL, @UFD #User );
that just does not work.
or like this:
local our ( $ItemNumber, %CFL, @CFD, #Customer %DFL, @DFD, #Destination %IFL, @IFD, #Item %MFL, @MFD, #Master %SFL, @SFD, #Description %UFL, @UFD #User );
that works, but strict still is not happy.
Sorry to be dense.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: Re: Re: Scope Between global and my
by jdporter (Paladin) on Apr 02, 2004 at 16:11 UTC | |
by SkipHuffman (Monk) on Apr 02, 2004 at 19:42 UTC |