implicitt/lib/Core/Common.ml

11 lines
154 B
OCaml
Raw Normal View History

2023-01-31 19:51:46 +01:00
(* number ; is-hole? *)
type meta = Mv of int * bool
let cMV : int ref = ref 0
let getCMV (_ : unit) =
let c = ! cMV in
cMV.contents <- c + 1;
c