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;