- or download this
cond ? then_expr : else_expr
- or download this
if (cond) { then_expr } else { else_expr }
- or download this
my $count = $row[0] ? $row[0] : 0;
- or download this
my $count;
if ($row[0]) {
...
} else {
$count = 0;
}
- or download this
my $count = $row[0] || 0;