Files
sml-projects/message-types/mailbox-type.sml

8 lines
149 B
Standard ML
Raw Normal View History

signature MAILBOX_TYPE =
sig
datatype t = DRAW of DrawMsg.t
end
structure MailboxType :> MAILBOX_TYPE =
struct datatype t = DRAW of DrawMsg.t end