Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: I most recently did it in the...

by zakzebrowski (Curate)
on Mar 28, 2004 at 16:54 UTC ( [id://340406]=note: print w/replies, xml ) Need Help??


in reply to I most recently did it in the...

sub whatisit{ my $it = shift; if ($it eq 'yada yada'){ return(undef); } else { if ($it eq 'get in a car accident'){ return("vincinity of 38.86540N 77.07163W"} else { if ($it eq 'write perl script'){ return ('kitchen'); } else{ return(\&email(zak)); } } } }


----
Zak - the office

Replies are listed 'Best First'.
Re^2: I most recently did it in the...
by Nkuvu (Priest) on Mar 28, 2004 at 22:17 UTC
    You know, you can reduce the level of indentation (thus making it easier to read (IMHO, of course)) of this sub by using elsif:

    sub whatisit{ my $it = shift; if ($it eq 'yada yada'){ return(undef); } elsif ($it eq 'get in a car accident') { return("vincinity of 38.86540N 77.07163W"); } elsif ($it eq 'write perl script'){ return ('kitchen'); } else{ return(\&email(zak)); } }

    I know this is pretty trivial code, but...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://340406]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-03-28 17:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found