diff options
| author | Chouser <chouser@n01se.net> | 2015-01-24 00:44:51 -0500 |
|---|---|---|
| committer | Chouser <chouser@n01se.net> | 2015-01-30 12:54:42 -0500 |
| commit | b7ffcab96166f15d6203551ffbc487da5076f92e (patch) | |
| tree | dc2aa07a80dbf3f03bfa2c331bb140bd530ab21f /ocaml/types.ml | |
| parent | f2f11f6279e1b242ba75136cd037fabdd176118a (diff) | |
| download | mal-b7ffcab96166f15d6203551ffbc487da5076f92e.tar.gz mal-b7ffcab96166f15d6203551ffbc487da5076f92e.zip | |
Ocaml: Add read, print for vector, map
Diffstat (limited to 'ocaml/types.ml')
| -rw-r--r-- | ocaml/types.ml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ocaml/types.ml b/ocaml/types.ml index 34dba05..6440580 100644 --- a/ocaml/types.ml +++ b/ocaml/types.ml @@ -1,5 +1,7 @@ type mal_type = | List of mal_type list + | Vector of mal_type list + | Map of mal_type list | Int of int | Symbol of string | Keyword of string |
