- or download this
my $returned = some_func($sent);
# ...
...
# ...
$value;
}
- or download this
my $returned = Foo::Bar::some_func($sent);
# in Foo::Bar:
...
#...
$value;
}
- or download this
my $returned = Foo::Bar->some_func($sent);
# in Foo::Bar (or any package that Foo::Bar derives from)
...
# ...
$value
}
- or download this
my $returend = $obj->some_func($sent);
# in the package that $obj is blessed into, or any package it is der
+ived from
...
#...
$value;
}