The following is a small collection of exercises related to formal semantics.
Considering the following (ambiguous) grammar for (closed) Boolean expressions in Python. Operators are given in order of increasing precedence along with their associativity in the following table:
<expr> ::= <expr> and <expr>
| <expr> or <expr>
| not <expr>
| True
| False
Operator | Associativity |
---|---|
| left |
| left |
| N/A |
Write down small-step and big-step semantics for Boolean expressions that capture standard behavior (operands of an operator should be evaluated from left to right). Make sure to deal with short-circuiting, e.g., the right operand of a conjunction should not be evaluated if the left operand evaluates to False
. (Challenge. Implement an evaluator for Boolean expressions in OCaml)
Perform the following substitutions. In the case of capture-avoidance, you are free to choose whatever variable names you want which maintian \alpha
-equivalence.
[(\lambda x . x)/ y](\lambda x. \lambda x . y)
[(\lambda x . x) / y](\lambda y. \lambda x. x)
[(\lambda x . x) / f](\lambda y. \lambda x. f(yx))
[(\lambda x . y) / z](\lambda x. \lambda y. z)
[(\lambda z . z) / y][(\lambda x . y) / x](\lambda y. \lambda x. x)
Use Menhir and OCamllex to build a parser for S-expressions which targets string sexpr
. Recall the ADT definition of sexpr
:
type 'a sexpr = Atom of 'a | List of 'a sexpr list
You should use the following regular expression for atoms in your lexer:
let atom = [^ ' ' '\t' '\n' '\r' '(' ')']+
This expression matches any nonempty sequence of non-whitespace non-parentheses characters.