o God.
---
From: Nathan Hilterbrand
To: beginners@perl.org
Sent: Thursday, 28 March 2013 8:54 PM
Subject: Re: Need clarification in using return value for modules
On 03/28/2013 11:17 AM, *Shaji Kalidasan* wrote:
> G
On 03/28/2013 11:17 AM, *Shaji Kalidasan* wrote:
Greetings,
I am using the following module
[module]
package My::GoldenRock::Utilities;
use strict;
use warnings;
use base 'Exporter';
our @EXPORT_OK = qw(foo bar);
our %EXPORT_TAGS = (all => \@EXPORT_OK);
our $VERSION = 0.1;
sub foo() { print
Greetings,
I am using the following module
[module]
package My::GoldenRock::Utilities;
use strict;
use warnings;
use base 'Exporter';
our @EXPORT_OK = qw(foo bar);
our %EXPORT_TAGS = (all => \@EXPORT_OK);
our $VERSION = 0.1;
sub foo() { print "Inside foo\n"; }
sub bar { print "Inside bar\n";