- or download this
#!/usr/bin/perl
use strict;
...
my $bar = "true";
}
print $bar;
- or download this
my $bar;
if ($foo) {
$bar = "true";
}
print $bar;
- or download this
{
my $bar;
...
}
print $bar;
}
- or download this
if ($foo) {
my $bar = "true";
}
print $bar;