1
0
Fork 0
This repository has been archived on 2024-05-03. You can view files and clone it, but cannot push or open issues or pull requests.
unification-pfa/lib/type.mli

10 lines
163 B
OCaml
Raw Normal View History

2024-03-11 09:31:56 +01:00
type t =
| Var of Identifier.t
| Int
| Product of t * t
| Arrow of t * t
2024-03-11 15:18:02 +01:00
[@@deriving eq, ord, show]
2024-04-13 20:15:39 +02:00
(* Type to string *)
val string_of_type : t -> string