- or download this
#!/usr/bin/perl
$foo = 'bar';
$baz = 'qux';
- or download this
#!/usr/bin/perl
use strict;
$main::foo = 'bar';
$main::baz = 'qux';
- or download this
#!/usr/bin/perl
use strict;
$main::foo = 'bar';
$main::baz = 'qux';
$main::foo .= $main::bza;
- or download this
#!/usr/bin/perl
use strict;
...
$foo = 'bar';
$baz = 'qux';
$foo .= $bza;