<root>	=	<sentence>
<period> = '.'
<start> = '\s'
<space> = ' '

<indirect-statement> = <noun-clause> <space> <verb-of-saying> <space> <that> <space> <independent-clause>
<interrogative-clause> = <noun-clause> <space> <verb-of-inquiry> <space> <interrogative-phrase>
<sentence> = <start> <interjection> <space> <independent-clause> <period> | <start> <independent-clause> <period> | <start> <independent-clause> <space> <coordinating-conjunction> <space> <independent-clause> <period> | <start> <independent-clause> <period> | <start> <interjection> <space> <independent-clause> <period>
<independent-clause> = <noun-clause> <space> <verb-clause> | <indirect-statement> | <interrogative-clause>

<noun-clause> = <noun-phrase>
<verb-clause> = <linking-verb-clause> | <transitive-verb-clause> | <intransitive-verb-clause> | <drinking-verb-clause>
<interrogative-phrase> = <interrogative-pronoun> <space> <noun-clause> <space> <transitive-verb> | <interrogative-adverb> <space> <independent-clause>
<linking-verb-clause> = <linking-verb-phrase>
<transitive-verb-clause> = <transitive-verb-phrase>
<intransitive-verb-clause> = <intransitive-verb-phrase>
<drinking-verb-clause> = <drinking-verb-phrase>

<noun-phrase> = <proper-noun> | <article> <space> <common-noun> | <article> <space> <adjective-phrase> <space> <common-noun>
<adjective-phrase> = <adjective> | <ad-adj> ' ' <adjective-phrase> | <adjective> '-' <adjective>
<linking-verb-phrase> = <linking-verb> <space> <noun-clause> | <linking-verb> <space> <adjective-phrase>
<transitive-verb-phrase> = <transitive-verb> <space> <noun-clause>
<intransitive-verb-phrase> = <intransitive-verb>
<drinking-verb-phrase> = <drinking-verb> <space> <drink>


<article> = "a" | "the"
<that> = "that"
<interjection> = "Oh!" | "Eek!" | "Alas!"

<interrogative-pronoun> = "what" | "who"
<interrogative-adverb> = "when" | "why" | "how" | "where" | "how much" | "whether"
<proper-noun> = "Vicky" | "Alf" | "Sweaglesw" | "Ania" | "Claudia" | "Yoyonat" | \
				"CCN" | "Steve" | "Callaghan" | "Seth" | "Allen" | "Philz" | "Daniyal" | \
				"Linus" | "Ellis" | "Scheinman" | "Krishna" | "Dan" | "God" | "God" | \
				"God" | "Bean" | "Jamilv" | "JLD" | "Starfury" | "Philz" | \
				"phishnerd" | "adiago" | "philz girlfriend" | "Urbanek" | "Dan Baker" | "Sen" | \
				"Stuart" | "Scott" | "Brian" | "Penelope"
<common-noun> = "hot dog" | "catfish" | "goldfish" | "sea-shell prompt" | "linux box" | \
				"calculator" | "computer" | "sea-shell account" | "website" | "frog" | "mosquito" | "zanzara"

<verb-of-saying> = <adverb> ' ' <verb-of-saying> | "says" | "thinks" | "hopes" | "suspects"
<verb-of-inquiry> = <adverb> ' ' <verb-of-inquiry> | "wonders" | "asks"
<linking-verb> = "is" | "becomes" | "was"
<transitive-verb> = <adverb> ' ' <transitive-verb> | "sees" | "contemplates" | "hates" | "chases" | "infiltrates" | "obliterates" | "shoves" | "horrifies"
<intransitive-verb> = <adverb> ' ' <intransitive-verb> | "lounges" | "yawns" | "strides"
<drinking-verb> = <adverb> ' ' <drinking-verb> | "slowly sips" | "swigs" | "devours" | "gulps"

<adjective> = "big" | "large" | "annoying" | "stupid" | "interesting" | "small" | "great" | "blue" | "morbid" | "slimy" | "slithery" | "depressed" | "enlightened"
<ad-adj> = "very" | "slightly" | "mostly" | "somewhat" | "quite" | "rather"

<drink> = "root-beer" | "tea" | "apple juice" | "fine cabernet" | "vodka" | "coffee" | "milk" | "scotch" | "whisky"

<coordinating-conjunction> = "and" | "while" | "as"

<adverb> = "probably" | "sometimes" | "always" | "usually" | "slowly" | "stupidly" | "quickly" | "sneakily" | "silently" | "almost" | "quietly" | "mischevously" 

