view tests/subs_sig.ur @ 555:0b2cf25a5eba

Installation
author Adam Chlipala <adamc@hcoop.net>
date Tue, 09 Dec 2008 11:40:51 -0500
parents 71bafe66dbe1
children
line wrap: on
line source
signature S = sig
        type t
end

structure S : S = struct
        type t = int
end