- or download this
# When their name is... Address them as...
...
: $name =~ m/(.*), \s+ Ph[.]?D \z /xms ? "Dr $1"
: $name
;
- or download this
$conditional ? foo() : bar();
- or download this
$conditional ? foo($arg_1) : foo($arg_2);
- or download this
$conditional ? $foo++ : $foo += 2;