NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Please more code! (Score:1)
Re: (Score:1)
could be worse (Score:1)
rjbs
long sub names (Score:1)
I can imagine using that sub, but it should apparently be broken into two subs, at least,
if it's doing two things (delivering emails, delivering section types).
deliver_emails_for_products would be a wrapper around deliver_emails,
if it's delivering separate emails for several products (maybe I misunderstand it).
deliver_section_types_for_users_that_havent_received_email
would wrap around deliver_section_types:
sub deliver_sectio
Re: (Score:1)
That sub has fourteen positional arguments.
Re: (Score:1)
“If you have a procedure with 10 parameters, you probably missed some.” —Alan J. Perlis, Epigrams on Programming
Haha (Score:1)
sub deliver_emails_for_products_and_section_ types_for_users_that_have_not_already_re ceived_email {
...
}
It seems like there's a good joke here; something about how great domain-specific languages are and how "rails with rubies would make this so easy you guys"
Re: (Score:1)