This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| open Base.Export | |
| type expr = | |
| | Var of string | |
| | Lam of string * expr | |
| | App of expr * expr | |
| let rec a_eq term = | |
| alpha 0 term | |
| and alpha acc term = |