04.03.2015 Views

Introducción a Yacc - GIAA

Introducción a Yacc - GIAA

Introducción a Yacc - GIAA

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

<strong>Yacc</strong>. Procesadores de Lenguaje II<br />

Gramática expresiones con prioridad<br />

%token NUMERO, MAS, POR, '(', ')'<br />

%left MAS<br />

%left POR<br />

%start S /* simbolo axioma sentencial */<br />

%%<br />

S: expr {printf("resultado: %d\n", $$); }<br />

expr: expr MAS expr<br />

|expr POR expr<br />

|'(' expr ')'<br />

| NUMERO<br />

%%

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!