in reply to Re: Perl Naming Conventions
in thread Perl Naming Conventions
Thanks for the link. Unfortunately the text describes only the basics.
I often OO modules on the CPAN which have the following style:
Methods:
get_value { ... }; set_value { ... };
Attributes:
my $foo = new foo( PrintError => 0, RaiseError => 1, );
One example is DBI.
Now I'm wondering if this is a convention or just because the author of the module likes it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Perl Naming Conventions
by halley (Prior) on Apr 28, 2003 at 19:51 UTC |