Files
compiler-the-translators/grammar.y
2025-02-21 16:18:38 -05:00

18 lines
230 B
Plaintext

/* Syntax Analyzer with Bison (3.8.1) */
/* (referenced Bison manual for file boilerplate [3.1]) */
// Prologue
%{
#include <stdio.h>
%}
// Declarations
// Grammar Rules
%%
semicolon.opt:
%empty
| ";"
;
%%