(* Implementation of the module [Cell]. Since no interface is defined, all functions will be exported. *) type t external global : unit -> t = "cell_global" external create : int -> t = "cell_create" external set : t -> int -> unit = "cell_set" external get : t -> int = "cell_get" external throw : unit -> string = "cell_throw" external call : string -> string = "cell_call"