Help for this page

Select Code to Download


  1. or download this
    my $out = exists $h{$_} ? sprintf "%.3E", $h{$_} : 'MISSING';
    
  2. or download this
    my %h = (
        A   => 1.23435,
    ...
        my $out = exists $h{$_} ? sprintf "%.3E", $h{$_} : 'MISSING';
        warn $out;
    }