csci2041/public-class-repo/SamplePrograms/Intervals/v4/intInterval.ml
Michael Zhang 399845160c
f
2018-01-29 17:35:31 -06:00

14 lines
272 B
OCaml

(* Here use use the 'Make_interval' functor to create a module
with types and functions for integer intervals. *)
open Intervals
module Int_interval =
Make_interval (
struct
type t = int
let compare = compare
let to_string = string_of_int
end )