Source file int.ml

1
2
3
4
5
6
7
8
9
10
module Int: MakePP.S with type t = int = Stdlib.Int

module Dec = struct
  let prefix = "0b"
  let suffix = ""
end

module Flags = Flags

include (MakePP.Make (Int) (Dec))