- or download this
my $var;
BEGIN {
$var = ...;
}
- or download this
my $var = "some value";
...
code that uses $var
...
- or download this
my $var = "some value";
BEGIN {
...
code that uses $var
...
}
- or download this
my $var;
BEGIN {
...
code that uses $var
...
}
- or download this
my $var; BEGIN { $var = "some value"; }
...
code that uses for $var
...
}