Guest User

Untitled

a guest
May 25th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. grammar JS
  2. rule content
  3. (thing / nonthing)*
  4. end
  5.  
  6. rule thing
  7. 'thing'
  8. end
  9.  
  10. rule nonthing
  11. (. !thing)+
  12. end
  13. end
Add Comment
Please, Sign In to add comment