We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 762145f commit 3b606d2Copy full SHA for 3b606d2
README.md
@@ -15,13 +15,15 @@ S -> Starting Symbol
15
a b -> Terminals
16
S A B E C X Y Z -> Non-Terminals
17
S YB XA * -> 4th and all following lines are production rules
18
-E YB XA -> You can add multiple non-terminal -> (terminal|non-terminal) relations by seperating via space
+E YB XA -> You can add multiple rules from one terminal by seperating via whitespace
19
A a YE XC -> This reads as A -> a | YE | XC
20
B b XE YZ
21
C AA
22
X b
23
Y a
24
Z BB
25
+
26
+For a token terminal, simply add the token like a normal terminal. For example Y token will be parsed as Y -> token.
27
```
28
29
After you compiled the .java file you can simply run it via
0 commit comments