Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: why does Perl eval have a strange terminator?

by ikegami (Patriarch)
on Jun 14, 2022 at 16:32 UTC ( [id://11144732]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    while ( COND ) BLOCK
    if ( COND ) BLOCK
    
  2. or download this
    EXPR while COND;
    EXPR if COND;
    
  3. or download this
    if ( !eval { f() } ) { ... }
    
  4. or download this
    my $x = eval { f() }
       or ...;
    
  5. or download this
    EXPR;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (1)
As of 2024-04-25 01:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found