annotate tests/tcrec.ur @ 2288:98f96a976ede

Finish locking, but it's not yet tested rigorously.
author Ziv Scully <ziv@mit.edu>
date Fri, 13 Nov 2015 11:03:09 -0500
parents 287604b4a08d
children
rev   line source
adam@1575 1 type r1 = {A : string, B : string}
adam@1575 2 type r2 = {B : string, A : string}
adam@1575 3
adam@1575 4 val show_r1 : show r1 = mkShow (fn r => r.A ^ "+" ^ r.B)
adam@1575 5 val show_r2 : show r2 = _