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