12.01.2013 Views

Tutorial Lex/Yacc - capsl

Tutorial Lex/Yacc - capsl

Tutorial Lex/Yacc - capsl

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Bison: rules Section Example<br />

/*** Rules section ***/<br />

statement_list: statement '\n'<br />

| statement_list statement '\n'<br />

statement: NAME '=' expression { $1->value = $3; }<br />

| expression { printf("= %g\n", $1); }<br />

expression: NUMBER<br />

| NAME { $$ = $1->value; }<br />

2/17/2012<br />

CAPSL<br />

47

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

Saved successfully!

Ooh no, something went wrong!