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

12 lines
159 B
Standard ML
Raw Normal View History

signature MAILBOX_TYPE =
sig
datatype t =
DRAW of DrawMsg.t
end
structure MailboxType :> MAILBOX_TYPE =
2024-10-06 09:32:56 +01:00
struct
datatype t =
DRAW of DrawMsg.t
end