Help for this page

Select Code to Download


  1. or download this
      @p{'eyes', 'hair', 'etc'} =();
  2. or download this
      my %p;
      $p{$_} = undef for qw(eyes hair etc);
    
  3. or download this
      @p{ 'eyes', 'hair', 'etc' }
  4. or download this
      sub do_head {
           my($heading, @data) = @_;
    
          return "<h4>$heading</h4>" if grep { defined($_) } @data;
          return "";
      }