Sha256: 9a195c5a65122990e31e4b5a0a5ea084682d0a5e2e0c301c8c255bc25b7c704f
Contents?: true
Size: 497 Bytes
Versions: 1
Compression:
Stored size: 497 Bytes
Contents
require_relative 'word_class' module Zenlish module WClasses # Abstract class. In traditional grammar, the verb is often defined # notionally as a 'doing' word (i.e. a word that describes the action # in a clause). class Verb < WordClass # As all verbs inflect, or change form, to reflect changes in tense, # person, number, and voice, they are, by definition, variable. def invariable? false end end # class end # module end # module
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
zenlish-0.2.00 | lib/zenlish/wclasses/verb.rb |