12 lines
184 B
Text
12 lines
184 B
Text
|
|
/*
|
|
Sample grammar.
|
|
This grammar wil produce text in the form: TODO
|
|
*/
|
|
|
|
/* This is the starting production of the grammar */
|
|
Start A
|
|
|
|
/* Production rule */
|
|
A : [ ID ] [ IS ] [ IDs ];
|
|
|