comparison tests/sig_wild.ur @ 244:71bafe66dbe1

Laconic -> Ur
author Adam Chlipala <adamc@hcoop.net>
date Sun, 31 Aug 2008 08:32:18 -0400
parents tests/sig_wild.lac@a1026ae076ea
children
comparison
equal deleted inserted replaced
243:2b9dfaffb008 244:71bafe66dbe1
1 signature S = sig
2 type t
3 val x : t
4 end
5
6 structure M : S = struct
7 type t = _
8 val x = 0
9 end