Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- %{
- #include <stdio.h>
- extern int liniinoi;
- void yyerror(const char *str)
- {
- printf("%s %d\n", str, liniinoi);
- }
- %}
- %token ANA ARE MERE NR
- %start s
- %%
- s: ANA ARE NR MERE {printf("Bines\n");}
- ;
- %%
- int main()
- {
- yyparse();
- }
Advertisement
Add Comment
Please, Sign In to add comment