my $C = exists $opts{'c'} ? '!' : ''; #### my $C; if (exists $opts{'c'}) { $C = '!'; } else { $C = ''; } #### $c = condition ? value of $c if condition is true : value of $c otherwise;