The following is a small collection of exercises related to formal grammars.
<a> ::= <b> <c>
<b> ::= <b> y | x
<c> ::= <d> | <d> y
<d> ::= z <b> | z
xyz
.xyz
.Design an unambiguous grammar for Boolean expressions over the constants True
and False
in Python. When you're done, compare with the Python grammar for Boolean operators.
Challenge. We just discussed parser generators in lecture. If you have time, build a parser for these expressions using menhir
and ocamllex
.