5 lines
92 B
OCaml
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
|