aboutsummaryrefslogtreecommitdiff
path: root/08/main.y
diff options
context:
space:
mode:
Diffstat (limited to '08/main.y')
-rw-r--r--08/main.y28
1 files changed, 28 insertions, 0 deletions
diff --git a/08/main.y b/08/main.y
new file mode 100644
index 0000000..04e98a7
--- /dev/null
+++ b/08/main.y
@@ -0,0 +1,28 @@
1%{
2#include <stdio.h>
3#include <stdlib.h>
4int yyerror(char *);
5%}
6
7%token A B
8%start S
9
10%%
11
12S: C B
13 |
14 ;
15C: A C
16 | A A A A
17 ;
18%%
19
20int main() {
21 yyparse();
22 printf("valid string");
23}
24
25int yyerror(char *s) {
26 printf("error: %s", s);
27 exit(0);
28}