- or download this
use Local::Some::Real::Cool::Module;
$this = Local::Some::Real::Cool::Module->new();
$that = Local::Some::Real::Cool::Module->new();
$more = Local::Some::Real::Cool::Module->new();
- or download this
use Local::Some::Real::Cool::Module;
$gimme = 'Local::Some::Real::Cool::Module';
...
$this = $gimme->new();
$that = $gimme->new();
$more = $gimme->new();
- or download this
# Nope
$gimme = use Local::Some::Real::Cool::Module;
- or download this
#!/usr/bin/perl
...
'Local::Some::Real::Cool::Module';