- or download this
my $first;
my $second;
...
$second = Second();
$third = Third();
}
- or download this
sub First { ... }
sub Second { our $first; ... }
...
local our $second = Second();
local our $third = Third();
}
- or download this
our $first;
our $second;
...
local $second = Second();
local $third = Third();
}
- or download this
sub First { ... }
sub Second { ... }
...
$o->Second();
$o->Third();
}
- or download this
sub First { ... }
sub Second { ... }
...
Second(\%h);
Third(\%h);
}