2 lines
95 B
OCaml
Executable file
2 lines
95 B
OCaml
Executable file
include Stdlib.Result
|
|
type ('a, 'b) result = ('a, 'b) Stdlib.Result.t = Ok of 'a | Error of 'b
|