Guest User

Untitled

a guest
Feb 19th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. grammar Example
  2. rule reminder
  3. "tell me " time "to " anything:(.+)
  4. end
  5.  
  6. rule time
  7. ("at" / "on") " " word+ &"to "
  8. end
  9.  
  10. rule word
  11. [a-zA-Z0-9]+ (" " / "." / "," / ":" / ";")?
  12. end
  13. end
Add Comment
Please, Sign In to add comment