1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 01:57:09 +03:00
mal/ocaml/types.ml

9 lines
149 B
OCaml

type mal_type =
| MalList of mal_type list
| Int of int
| Symbol of string
| Keyword of string
| Nil
| Bool of bool
| String of string