Created
November 15, 2019 08:40
-
-
Save Falconerd/970485967be301abc7d59846f471eeae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<sentence> ::= <subj> <obj> <verb> <part> | |
<sub> ::= <noun> | |
<noun> ::= dog | cat | man | woman | robot | pen | |
<obj> ::= <noun> | |
<verb> ::= kick | whack | dance | own | |
<part> ::= now | earlier | later | |
<subj> <obj> <verb> <part> | |
man pen own now == "A man owns a pen" | |
dog cat dance earlier == "A dog was dacing with a cat" | |
dog cat dance later == "A dog will dance with a cat" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment