comparison tests/broad_unif.ur @ 244:71bafe66dbe1

Laconic -> Ur
author Adam Chlipala <adamc@hcoop.net>
date Sun, 31 Aug 2008 08:32:18 -0400
parents tests/broad_unif.lac@522f4bd3955e
children
comparison
equal deleted inserted replaced
243:2b9dfaffb008 244:71bafe66dbe1
1 structure M = struct
2 type t = int
3 val f = fn x => x
4 val y = f 0
5 end
6
7 signature S = sig
8 type t
9 val f : t -> t
10 end
11
12 structure M : S = struct
13 type t = int
14 val f = fn x => x
15 end