Help for this page

Select Code to Download


  1. or download this
    my $publisher = q{O'Reilly};
    
  2. or download this
    my $title         =  q[Perl Best Practices];
    my $publisher     =  q[O'Reilly];
    my $end_of_block  =  q[}];
    my $closing_delim =  q['}];
    my $citation      = qq[$title ($publisher)];
    
  3. or download this
    %default_service_record  = (
        name   => '<unknown>',
    ...
        unit   => ['Training platoon'],
        duty   => ['Basic training'],
    );
    
  4. or download this
    %default_service_record  = (
        'name',   '<unknown>',
    ...
        'unit',   ['Training platoon'],
        'duty',   ['Basic training'],
    );