Help for this page

Select Code to Download


  1. or download this
    my $foo = exists($description{$input}) 
       ? $description{$input} 
       : "default value";
    
  2. or download this
    my $foo = $description{$input};
    $foo = "default value" if (!defined($foo));