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