%{ open Symbol open Ast %} /* tokens */ %token TokEof %start prog %type prog %% prog: stmt { raise (Failure "not implemented") } ;