Guest User

Untitled

a guest
Jun 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. S -> NUM
  2. | STRING
  3.  
  4. NUM -> DIGIT+
  5.  
  6. DIGIT -> 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9
  7.  
  8. STRING -> (ALPHA | DIGIT)+
  9.  
  10. ALPHA -> a | b | ... | Y | Z
Add Comment
Please, Sign In to add comment