sig
  type 'a t
  val return : '-> 'a t
  val bind : 'a t -> ('-> 'b t) -> 'b t
  val get : '-> 'a * 'a
  val put : '-> '-> unit * 'a
end