mirror of
https://github.com/LucasVbr/croissant.git
synced 2026-05-13 17:12:10 +00:00
17 lines
358 B
OCaml
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" |