├── LICENSE ├── README.md ├── include ├── article.wordlist ├── be.wordlist ├── character.wordlist ├── first_person.wordlist ├── first_person_possessive.wordlist ├── first_person_reflexive.wordlist ├── include │ ├── article.wordlist │ ├── be.wordlist │ ├── character.wordlist │ ├── first_person.wordlist │ ├── first_person_possessive.wordlist │ ├── first_person_reflexive.wordlist │ ├── mathhelpers.h │ ├── negative_adjective.wordlist │ ├── negative_comparative.wordlist │ ├── negative_noun.wordlist │ ├── neutral_adjective.wordlist │ ├── neutral_noun.wordlist │ ├── nothing.wordlist │ ├── positive_adjective.wordlist │ ├── positive_comparative.wordlist │ ├── positive_noun.wordlist │ ├── roman_numbers.metaflex │ ├── second_person.wordlist │ ├── second_person_possessive.wordlist │ ├── second_person_reflexive.wordlist │ ├── terminals.metaflex │ ├── third_person_possessive.wordlist │ ├── user_code_bottom.metaflex │ └── user_code_top.metaflex ├── mathhelpers.h ├── negative_adjective.wordlist ├── negative_comparative.wordlist ├── negative_noun.wordlist ├── neutral_adjective.wordlist ├── neutral_noun.wordlist ├── nothing.wordlist ├── positive_adjective.wordlist ├── positive_comparative.wordlist ├── positive_noun.wordlist ├── roman_numbers.metaflex ├── second_person.wordlist ├── second_person_possessive.wordlist ├── second_person_reflexive.wordlist ├── terminals.metaflex ├── third_person_possessive.wordlist ├── user_code_bottom.metaflex └── user_code_top.metaflex ├── spl └── splc.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/README.md -------------------------------------------------------------------------------- /include/article.wordlist: -------------------------------------------------------------------------------- 1 | a 2 | an 3 | the 4 | -------------------------------------------------------------------------------- /include/be.wordlist: -------------------------------------------------------------------------------- 1 | am 2 | are 3 | art 4 | be 5 | is 6 | -------------------------------------------------------------------------------- /include/character.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/character.wordlist -------------------------------------------------------------------------------- /include/first_person.wordlist: -------------------------------------------------------------------------------- 1 | I 2 | me 3 | -------------------------------------------------------------------------------- /include/first_person_possessive.wordlist: -------------------------------------------------------------------------------- 1 | mine 2 | my 3 | -------------------------------------------------------------------------------- /include/first_person_reflexive.wordlist: -------------------------------------------------------------------------------- 1 | myself 2 | -------------------------------------------------------------------------------- /include/include/article.wordlist: -------------------------------------------------------------------------------- 1 | a 2 | an 3 | the 4 | -------------------------------------------------------------------------------- /include/include/be.wordlist: -------------------------------------------------------------------------------- 1 | am 2 | are 3 | art 4 | be 5 | is 6 | -------------------------------------------------------------------------------- /include/include/character.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/include/character.wordlist -------------------------------------------------------------------------------- /include/include/first_person.wordlist: -------------------------------------------------------------------------------- 1 | I 2 | me 3 | -------------------------------------------------------------------------------- /include/include/first_person_possessive.wordlist: -------------------------------------------------------------------------------- 1 | mine 2 | my 3 | -------------------------------------------------------------------------------- /include/include/first_person_reflexive.wordlist: -------------------------------------------------------------------------------- 1 | myself 2 | -------------------------------------------------------------------------------- /include/include/mathhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/include/mathhelpers.h -------------------------------------------------------------------------------- /include/include/negative_adjective.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/include/negative_adjective.wordlist -------------------------------------------------------------------------------- /include/include/negative_comparative.wordlist: -------------------------------------------------------------------------------- 1 | punier 2 | smaller 3 | worse 4 | -------------------------------------------------------------------------------- /include/include/negative_noun.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/include/negative_noun.wordlist -------------------------------------------------------------------------------- /include/include/neutral_adjective.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/include/neutral_adjective.wordlist -------------------------------------------------------------------------------- /include/include/neutral_noun.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/include/neutral_noun.wordlist -------------------------------------------------------------------------------- /include/include/nothing.wordlist: -------------------------------------------------------------------------------- 1 | nothing 2 | zero 3 | -------------------------------------------------------------------------------- /include/include/positive_adjective.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/include/positive_adjective.wordlist -------------------------------------------------------------------------------- /include/include/positive_comparative.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/include/positive_comparative.wordlist -------------------------------------------------------------------------------- /include/include/positive_noun.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/include/positive_noun.wordlist -------------------------------------------------------------------------------- /include/include/roman_numbers.metaflex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/include/roman_numbers.metaflex -------------------------------------------------------------------------------- /include/include/second_person.wordlist: -------------------------------------------------------------------------------- 1 | thee 2 | thou 3 | you 4 | -------------------------------------------------------------------------------- /include/include/second_person_possessive.wordlist: -------------------------------------------------------------------------------- 1 | thine 2 | thy 3 | your 4 | -------------------------------------------------------------------------------- /include/include/second_person_reflexive.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/include/second_person_reflexive.wordlist -------------------------------------------------------------------------------- /include/include/terminals.metaflex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/include/terminals.metaflex -------------------------------------------------------------------------------- /include/include/third_person_possessive.wordlist: -------------------------------------------------------------------------------- 1 | his 2 | her 3 | its 4 | their 5 | -------------------------------------------------------------------------------- /include/include/user_code_bottom.metaflex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/include/user_code_top.metaflex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/include/user_code_top.metaflex -------------------------------------------------------------------------------- /include/mathhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/mathhelpers.h -------------------------------------------------------------------------------- /include/negative_adjective.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/negative_adjective.wordlist -------------------------------------------------------------------------------- /include/negative_comparative.wordlist: -------------------------------------------------------------------------------- 1 | punier 2 | smaller 3 | worse 4 | -------------------------------------------------------------------------------- /include/negative_noun.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/negative_noun.wordlist -------------------------------------------------------------------------------- /include/neutral_adjective.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/neutral_adjective.wordlist -------------------------------------------------------------------------------- /include/neutral_noun.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/neutral_noun.wordlist -------------------------------------------------------------------------------- /include/nothing.wordlist: -------------------------------------------------------------------------------- 1 | nothing 2 | zero 3 | -------------------------------------------------------------------------------- /include/positive_adjective.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/positive_adjective.wordlist -------------------------------------------------------------------------------- /include/positive_comparative.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/positive_comparative.wordlist -------------------------------------------------------------------------------- /include/positive_noun.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/positive_noun.wordlist -------------------------------------------------------------------------------- /include/roman_numbers.metaflex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/roman_numbers.metaflex -------------------------------------------------------------------------------- /include/second_person.wordlist: -------------------------------------------------------------------------------- 1 | thee 2 | thou 3 | you 4 | -------------------------------------------------------------------------------- /include/second_person_possessive.wordlist: -------------------------------------------------------------------------------- 1 | thine 2 | thy 3 | your 4 | -------------------------------------------------------------------------------- /include/second_person_reflexive.wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/second_person_reflexive.wordlist -------------------------------------------------------------------------------- /include/terminals.metaflex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/terminals.metaflex -------------------------------------------------------------------------------- /include/third_person_possessive.wordlist: -------------------------------------------------------------------------------- 1 | his 2 | her 3 | its 4 | their 5 | -------------------------------------------------------------------------------- /include/user_code_bottom.metaflex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/user_code_top.metaflex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/include/user_code_top.metaflex -------------------------------------------------------------------------------- /spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/spl -------------------------------------------------------------------------------- /splc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drsam94/Spl/HEAD/splc.py --------------------------------------------------------------------------------