- or download this
my ($x, $y) = (1,2);
if (<some complex condition depending on the environment>) {
...
} else {
call_my_sub($y)
}
- or download this
my ($x, $y) = (1,2);
if (<some complex condition depending on the environment>) {
...
} else {
call_my_sub($y)
}
- or download this
my ($x, $y) = (1,2);
if (<condition>) {
...
} else {
call_my_sub($z)
}
- or download this
my ($x, $y) = (1,2);
if (<some complex condition depending on the environment>) {
...
} else {
call_my_sub($y)
}
- or download this
if (<some complex condition depending on the environment>) {
my $x = 1;
...
my $y = 2;
call_my_sub($y)
}