8 lines
149 B
Standard ML
8 lines
149 B
Standard ML
signature MAILBOX_TYPE =
|
|
sig
|
|
datatype t = DRAW of DrawMsg.t
|
|
end
|
|
|
|
structure MailboxType :> MAILBOX_TYPE =
|
|
struct datatype t = DRAW of DrawMsg.t end
|