in reply to Re^3: Scope, package, and 'my' variables
in thread Scope, package, and 'my' variables
Thanks
package bbb; { use strict; use warnings 'all'; my $var = 'second time for var'; sub do_b { print "In 'bbb' var is set to '$var'\n"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Scope, package, and 'my' variables
by chromatic (Archbishop) on Jan 05, 2005 at 04:52 UTC | |
|
Re^5: Scope, package, and 'my' variables
by Errto (Vicar) on Jan 05, 2005 at 04:57 UTC |