Enter a grammar:

Here's a small, quick, example grammar to give you an idea of the format of the grammars:
S -> id
   | V assign E.
V -> id.
E -> V
   | num.

To see more grammars and learn more about the format of the grammars: