Help for this page
my $C = exists $opts{'c'} ? '!' : '';
my $C; if (exists $opts{'c'}) { ... } else { $C = ''; }
$c = condition ? value of $c if condition is true : value of $c otherw +ise;