view tests/subs_sig.ur @ 408:de3b03e22447

ListShop prose
author Adam Chlipala <adamc@hcoop.net>
date Tue, 21 Oct 2008 17:44:03 -0400
parents 71bafe66dbe1
children
line wrap: on
line source
signature S = sig
        type t
end

structure S : S = struct
        type t = int
end