in reply to Coding superstitions
I hate that. Nothing particularly wrong with it, it's valid perl, except that I hate it. The following is more to my likingsub Hello { "I am a sub"; }
Hashkeys are a little more forgiving, because how often are you really going to have s p a c e s =>in between, or some such nonsense like others have pointed out, but as with my example above, I'll take being explicit any time over being implicit. I also like to do the following (mainly for visual effect):sub Hello { return "No! *I* am a sub."; }
$fooBar->Fooz( 'abc' => 1, 'aa0ec' => 221, 'abae' => 12, 'aecadf' => 145, ,)->pack( 'ab' => 11, 'cd' => 22, ,);
______crazyinsomniac_____________________________ Of all the things I've lost, I miss my mind the most. perl -e "$q=$_;map({chr unpack qq;H*;,$_}split(q;;,q*H*));print;$q/$q;" |
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: (crazyinsomniac) Re: Coding superstitions
by n3dst4 (Scribe) on Jan 08, 2002 at 21:21 UTC | |
by blakem (Monsignor) on Jan 09, 2002 at 00:24 UTC | |
by n3dst4 (Scribe) on Jan 09, 2002 at 04:27 UTC | |
by talexb (Chancellor) on Jan 09, 2002 at 19:37 UTC | |
by seattlejohn (Deacon) on Jan 15, 2002 at 12:24 UTC |