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.
sometimes Perl needs that () hint (Score:1)
Consider:
#!/usr/bin/perl
use warnings;use strict;
my %dispatch = (foo => "bar",
foo() => "bar",
);
sub foo {return "FOO";
}
print keys %dispatch;
But in general I agree (especially with regards to chaining method calls).
Cheers,
-- Douglas Hunter
P.S. Does anyone know how to preserve whitespace inside code sections on use.perl?
Reply to This
Re: (Score:1)
Use
<ecode>tags.