2 lines
105 B
Standard ML
Executable file
2 lines
105 B
Standard ML
Executable file
type nonrec ('a, 'b) result = ('a, 'b) result = Ok of 'a | Error of 'b
|
|
type ('a, 'b) t = ('a, 'b) result
|