sig
  type 'a t = 'a
  val return : '-> 'a t
  val ( >>= ) : 'a t -> ('-> 'b t) -> 'b t
end