Module type Monad.Basic

module type Basic = sig .. end

type 'a t 
val bind : 'a t -> ('a -> 'b t) -> 'b t
val return : 'a -> 'a t