Help for this page

Select Code to Download


  1. or download this
    package RolePlaying::Classes;
    
    ...
    }
    
    1;
    
  2. or download this
    for my $name (keys %characters) {
      my $id = $name;
    ...
      print qq{\t<p>}.print_classes($experience,@classes).qq{</p>\n};
      print qq{\t<p>Experience: $experience</p>\n};
    }
    
  3. or download this
    tie my %characters, qw(Tie::IxHash);
    %characters = (
    ...
        classes => ["fighter/warrior","thief/rogue","mage/wizard"],
      },
    );