Files
2024-10-26 22:40:50 +02:00

17 lines
358 B
OCaml

type t =
| IntegerType
| FloatType
| BooleanType
| StringType
| CharacterType
| NullType
| VoidType
let string_of_t = function
| IntegerType -> "IntegerType"
| FloatType -> "FloatType"
| BooleanType -> "BooleanType"
| StringType -> "StringType"
| CharacterType -> "CharacterType"
| NullType -> "NullType"
| VoidType -> "VoidType"