Help for this page

Select Code to Download


  1. or download this
    package C;
    
    ...
    }
     
    1;
    
  2. or download this
    if($status == C->CONST1) { print "1" }
    elsif($status =~ /(2|3)/ { print "2 or 3" }
    else                     { print 'Something' }
    
  3. or download this
    if($status == C->CONST1) { print "1" }
    elsif($status =~ /(C->CONST2|C->CONST3)/ { print "2 or 3" }
    else                     { print 'Something' }
    
  4. or download this
    $status == C->CONST3 or $status == C->CONST3