Help for this page

Select Code to Download


  1. or download this
    my $C = exists $opts{'c'} ? '!' : '';
    
  2. or download this
    my $C;
    if (exists $opts{'c'}) {
    ...
    } else {
        $C = '';
    }
    
  3. or download this
    $c = condition ? value of $c if condition is true : value of $c otherw
    +ise;