hacker-quotes/models
Zorchenhimer 94a46a7072
Start implementing format sentences
Base word types are implemented.  The format for defining a word is as follows:

    {word_type:optionA,optionB}

Where `word_type` is one of the following:

    - adjective
    - noun
    - noun_phrase
    - pronoun
    - verb

Followed by a colon and a comma separated list of options for that word.
Options are as follows (adjectives have no options):

Nouns:
    - compound
    - plural

Noun Phrase:
    - indefinite
    - noadj
    - plural
    - compound

Pronouns:
    - plural

Verbs:
    - conjugation type: i (default), you, it, we, or they
    - conjugation time: past, present (default), or future
    - invert (not implemented yet)

Options for a word type are optional and may be omitted.
2021-02-17 18:07:23 -05:00
..
adjective.go Initial commit 2021-02-13 11:39:05 -05:00
noun.go Initial commit 2021-02-13 11:39:05 -05:00
pronoun.go Add some more sentence types; Add pronouns 2021-02-14 20:35:25 -05:00
verb.go Start implementing format sentences 2021-02-17 18:07:23 -05:00
verb_test.go Added verb conjugation tests 2021-02-14 12:24:08 -05:00