summaryrefslogtreecommitdiff
path: root/Homework/cs5300/project-three/out/production/p3-parser/data/Simple.cfg
blob: 80c1e188779ff3223a9ee3547bd645e87f4117ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
//
// DO NOT MODIFY THIS FILE.
//
// This file contains an expression grammar that uses tokens described in
// ParenLexer.tokens.

grammar Simple;

G: N;

N: N X
  | X
  ;