Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: backslash found where operator expected at

by ikegami (Patriarch)
on Apr 21, 2021 at 21:23 UTC ( [id://11131555]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    switch ($response_code) {
        case '200' {              # OK
    ...
        case '503' { exit 30; }   # SERVICE_ERROR
        else       { exit -1; }
    }
    
  2. or download this
    for ($response_code) {
        if ($_ == 200) {         # OK
    ...
    
        exit 255;
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-16 19:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found