Help for this page

Select Code to Download


  1. or download this
    $VAR1 = {
              'class_name' => '1st level Fighter/1st level Thief/1st level
    + Mage',
    ...
              'id_name' => 'Kymaria_Zendelic',
              'first_name' => 'Kymaria'
            };
    
  2. or download this
    while (defined (my $hr = $csv->getline_hr($io))) { 
      # use $hr->{id_name} to get the id_name
    }
    
  3. or download this
    while (defined (my $hr = $csv->getline_hr($io))) { 
        my %general_information = (
    ...
    
        # do stuff with the above hashes.
    }
    
  4. or download this
    while (defined (my $hr = $csv->getline_hr($io))) { 
    
    ...
        list_loop(\%general_information);
        list_loop(\%ability_scores);
    }