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