A simple boolean language with definitions implemented over Sexp.t
Conclusions:
- Is pretty easy to write a custom
sexp_of_t
andt_of_sexp
functions. - This lets us to add some sugar over the atoms, I use ?v for variables as an example here
- On top of that we can build superset of S-Expressions language which is easy to parse and very expressive
!!!! from manual !!!!
@TODO: FIX THIS!