OSDN Git Service

disable half-precision
[happyabc/happyabc.git] / swflib / label.ml
1 type t = int
2
3 let count =
4   ref 0
5
6 let make () =
7   count := !count+1;
8   !count
9
10 let peek n =
11   !count+1+n
12
13 let to_string n =
14   Printf.sprintf "$%d" n