mte/unikernel/duniverse/ocaml-re/lib/fake/domain.ml
2025-11-11 02:07:51 +01:00

5 lines
92 B
OCaml

module DLS = struct
let new_key f = ref (f())
let set x y = x := y
let get x = !x
end