if

2013-08-23 22:45
if ($num < 5) {
   $num++;
}


這樣的寫法確實非常工整,可是對於惜字如金的Perl程式員來說,這樣的寫法似乎非常不經濟。於是一種簡單的模式被大量使用:
 


$num++ if ($num < 5);