summaryrefslogtreecommitdiffstats
path: root/either.sml
blob: 6a63fe5bb471692c4446bacb9d9676eca9fa1b34 (plain) (blame)
1
2
3
4
structure Either =
struct
  datatype ('a, 'b) either = Left of 'a | Right of 'b
end