module type Basic = sig .. end
sig
end
type 'a t
'a
val bind : 'a t -> ('a -> 'b t) -> 'b t
'a t -> ('a -> 'b t) -> 'b t
val return : 'a -> 'a t
'a -> 'a t