
//  this is a test grammar for digital system teaching
"// parser generated from grammar"
"#include <compile.h>"
"#include <parse.h>"

pass = stmt pass | tkEOF %

stmt = expr tkSEMI %

expr = term exprs %
exprs = bop term exprs | nil %

