Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^5: Regex Or Die! (!unless)

by tye (Sage)
on Sep 28, 2006 at 07:23 UTC ( [id://575296]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        if(  SpokenTo()  ) {
           Speak();
        }
    
  2. or download this
    sub Speak {
        return unless SpokenTo();
        # ...
    }
    
  3. or download this
    sub Speak {
        return   if ! SpokenTo();
        # ...
    }
    
  4. or download this
    DontSpeak()  unless SpokenTo();
    DontSpeak()  if ! SpokenTo();
    
  5. or download this
        unless( SpokenTo() ) dont {
            Speak();
        }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (6)
As of 2024-03-29 12:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found