-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAditya_Singh_A2.l
85 lines (41 loc) · 1.47 KB
/
Aditya_Singh_A2.l
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
%{
#include <stdio.h>
#include <ctype.h>
%}
%option case-sensitive
ID [a-z]+
DIGIT [0-9]+
NUM [+-]?{DIGIT}
PUNC [;]
WS [ \t\n]
%%
"PROGRAM" {printf(" <KW, %s> ", yytext);}
"INTEGER" {printf(" <KW, %s> ", yytext);}
"READ" {printf(" <KW, %s> ", yytext);}
"PRINT" {printf(" <KW, %s> ", yytext);}
"IF" {printf(" <KW, %s> ", yytext);}
"THEN" {printf(" <KW, %s> ", yytext);}
"ELSE" {printf(" <KW, %s> ", yytext);}
"GT" {printf(" <KW, %s> ", yytext);}
"LT" {printf(" <KW, %s> ", yytext);}
"EQ" {printf(" <KW, %s> ", yytext);}
"DO" {printf(" <KW, %s> ", yytext);}
"END" {printf(" <KW, %s> ", yytext);}
". LT ." {printf( "<LT_OP" );}
". GT ." {printf(" <GT_OP> ");}
"(" {printf(" <OPEN_PARA> ");}
")" {printf(" <CLOSE_PARA> ");}
"," {printf(" <COMMA> ");}
"*" {printf(" <ASTERISK> ");}
"=" {printf(" <EQUALOP> ");}
"+" {printf(" <PLUSOP> ");}
"-" {printf(" <MINUSOP> ");}
\" {printf(" <QUOTE> ");}
{ID} {printf(" <ID, %s> ", yytext);}
{WS} {}
{PUNC} {printf(" <PUNCTUATION, ;> ");}
{NUM} {printf(" <NUM, %s> ", yytext);}
"!".* {} /* Consume comment, do nothing */
. {}
%%
int yywrap () {}