mirror of
https://github.com/LucasVbr/croissant.git
synced 2026-05-14 01:22:06 +00:00
16 lines
320 B
OCaml
16 lines
320 B
OCaml
type types =
|
|
| IntegerType
|
|
| FloatType
|
|
| CharacterType
|
|
| StringType
|
|
| BooleanType
|
|
| VoidType
|
|
|
|
let pp_types = function
|
|
| IntegerType -> "IntegerType"
|
|
| FloatType -> "FloatType"
|
|
| CharacterType -> "CharacterType"
|
|
| StringType -> "StringType"
|
|
| BooleanType -> "BooleanType"
|
|
| VoidType -> "VoidType"
|