aboutsummaryrefslogtreecommitdiff
path: root/9/main.y
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-04-30 17:52:13 +0100
committerAkshay <[email protected]>2021-04-30 17:52:13 +0100
commit8a57bedc04fff7a92ef6d2762cfe5fc17050f021 (patch)
tree192ea2a1bd2eec0c0f84a9cb7adc9b10d005e1db /9/main.y
parent30047205e440e9ad8984e1830b8b819b5fe1f9f7 (diff)
add yacc programs
Diffstat (limited to '9/main.y')
-rw-r--r--9/main.y30
1 files changed, 30 insertions, 0 deletions
diff --git a/9/main.y b/9/main.y
new file mode 100644
index 0000000..0db29c1
--- /dev/null
+++ b/9/main.y
@@ -0,0 +1,30 @@
1%{
2#include <stdio.h>
3#include <stdlib.h>
4int yylex();
5int yyerror(char *);
6%}
7
8%token A B C
9
10%%
11S: X Y
12 |
13 ;
14X: A X B
15 |
16 ;
17Y: B Y C
18 |
19 ;
20%%
21
22int main() {
23 yyparse();
24 printf("valid string");
25}
26
27int yyerror(char *s) {
28 printf("error: %s", s);
29 exit(0);
30}