lambda-auth
lambda-auth copied to clipboard
authenticated data structures, generically
I was not able to build the example using make. It first reports the following error: Makefile:145: .depend: No such file or directory make: **\* No rule to make target...
Workaround: include a minimal type and method: ``` type useless = Useless ``` --- ``` f_useless () = auth Useless ```
This example causes stack overflow: ``` type tree = Tip | Bin of (tree * int * tree) authtype | UnBin of (tree * int * tree) ``` This workaround...