view tests/subs_sig.ur @ 1831:36428d853c97

Standard library additions: Option.unsafeGet, Basis.exp
author Austin Seipp <mad.one@gmail.com>
date Wed, 28 Nov 2012 11:41:54 -0500
parents 71bafe66dbe1
children
line wrap: on
line source
signature S = sig
        type t
end

structure S : S = struct
        type t = int
end