Help for this page

Select Code to Download


  1. or download this
    my %hash = (
        foo => 'bar',
        (baz => $quux) x!! $quux, # list repitition, see "x" in perlop
    );
    
  2. or download this
    my %hash = (
        foo => 'bar',
    ...
    if ($quux) {
       $hash{baz} = $quux;
    }