Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Re: Collecting ping times

by halley (Prior)
on Aug 18, 2003 at 18:02 UTC ( [id://284657]=note: print w/replies, xml ) Need Help??


in reply to Re: Collecting ping times
in thread Collecting ping times

Warnings report any detected issue but the code continues on doing what perl was best able to guess what should happen. Neither the join() function nor the print will "abort" on an undef. Perl just promotes undef to ''.
@f = qw(a b c d e f g h); $f[3] = undef; print join('-', @f), $/; __OUTPUT__ a-b-c--e-f-g-h

--
[ e d @ h a l l e y . c c ]

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (1)
As of 2024-04-18 23:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found