Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <Parse> ::= <Command> <Parse> | <Command>
  2.  
  3. <Command> ::= <DirectionCommand> |
  4. <WriteCommand> |
  5. <ColorCommand> |
  6. <RepCommand>
  7.  
  8. <DirectionCommand> ::= FORW NUM DOT | BACK NUM DOT | RIGHT NUM DOT | LEFT NUM DOT
  9.  
  10. <WriteCommand> ::= UP DOT | DOWN DOT
  11.  
  12. <ColorCommand> ::= COLOR HEX DOT
  13.  
  14. -<RepCommand> ::= REP NUM <Command> | REP NUM <QuoteCommand> { <Command> } <QuoteCommand>
  15.  
  16. -<QuoteCommand> ::= QUOTE
  17.  
  18. +<RepCommand> ::= REP NUM <QuoteCommand>
  19. +<QuoteCommand> ::= <Command> | QUOTE
  20. +<QuoteEnd> ::= <Command> <QuoteEnd> | <Command> QUOTE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement