Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^2: LWP::Simple problems

by saskaqueer (Friar)
on Jan 29, 2005 at 17:38 UTC ( [id://426259]=note: print w/replies, xml ) Need Help??


in reply to Re: LWP::Simple problems
in thread LWP::Simple problems

defined $seq ? push @fasta, $seq : push @fasta, "> COULDN'T FIND IT" ;

You can save a few (meagre) keystrokes and make the statement more readable (IMO):

push( @fasta, defined($seq) ? $seq : "> COULDN'T FIND IT" );

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (5)
As of 2024-04-19 22:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found