require_relative 'pronoun' module Zenlish module WClasses # Personal pronouns refer to people or things involved in the text. # They change according to person, number, gender and case. # Subject forms: I, you, he/she/it, we, you, they # Object forms: Me, you, him, her, it, us, you, them class PersonalPronoun < Pronoun end # class end # module end # module