Help for this page

Select Code to Download


  1. or download this
    class Elf is Character {
      ...
    }
    ...
    class Human is Character {
      ...
    }
    
  2. or download this
    class Thief is Profession {
      ...
    }
    
    my Elf $elf .= new(Thief.new);
    
  3. or download this
    class Elf is Character {
      has $:profession;
    ...
      }
      ...
    }
    
  4. or download this
    class Elf is Character does Infravision {
      ...
    }
    ...
    class Gnome is Character does Infravision {
      ...
    }