mte/unikernel/duniverse/ocaml-re/lib/fake/domain.ml

6 lines
92 B
OCaml
Raw Normal View History

2025-11-11 02:07:51 +01:00
module DLS = struct
let new_key f = ref (f())
let set x y = x := y
let get x = !x
end