forked from joao-frohlich/compiladores
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gram.lex
76 lines (50 loc) · 1.88 KB
/
gram.lex
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
/* Linguagem: Pascal-like */
/* ========================================================================== */
/* Abaixo, indicado pelos limitadores "%{" e "%}", as includes necessárias... */
/* ========================================================================== */
%{
/* Para as funções atoi() e atof() */
#include <math.h>
%}
/* ========================================================================== */
/* =========================== Sessão DEFINIÇÔES ========================== */
/* ========================================================================== */
DIGITO [0-9]
ident [A-Za-z][A-Za-z0-9]*
%%
{DIGITO}+ {
printf( "Um valor inteiro: %s (%d)\n", yytext,
atoi( yytext ) );
}
{DIGITO}+"."{DIGITO}* {
printf( "Um valor real: %s (%g)\n", yytext,
atof( yytext ) );
}
programa|var|inicio|fim|se|senao|faca|enquanto|procedimento {
printf( "Uma palavra-chave: %s\n", yytext );
}
":=" printf( "Uma atribuição\n");
"," printf( "Outra atribuição\n");
":" printf( "Uma atribuição de tipo\n");
inteiro|real|caracter|booleano printf("Um tipo: %s\n", yytext);
{ident} printf( "Um identificador: %s\n", yytext );
"+"|"-"|"*"|"/" printf( "Um operador: %s\n", yytext );
";" printf("Fim de expressão\n");
"{"[^}\n]*"}" /* Lembre-se... comentários não tem utilidade! */
[ \t\n]+ /* Lembre-se... espaços em branco não tem utilidade! */
"="|">"|"<"|"<>"|"<="|">=" printf("Um operador logico: %s\n", yytext);
"." printf("Fim do programa\n");
. printf( "Caracter não reconhecido: %s\n", yytext );
%%
int main( argc, argv )
int argc;
char **argv;
{
++argv, --argc;
if ( argc > 0 )
yyin = fopen( argv[0], "r" );
else
yyin = stdin;
yylex();
return 0;
}