annotate tests/tcrec.ur @ 2307:6ae9a2784a45

Return to working version mode
author Adam Chlipala <adam@chlipala.net>
date Sun, 20 Dec 2015 14:39:50 -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 = _