diff --git a/common/AST.hs b/common/AST.hs index 5398b5f..d15edf1 100644 --- a/common/AST.hs +++ b/common/AST.hs @@ -114,6 +114,8 @@ data Type = -- | An array. -- For N-dimensional arrays, the [Dimension] list will be of length N. | Array [Dimension] Type + -- | A (linked) list that allows element-wise removal, and easy concatentation. Has dynamic size. + | List Type -- | A user-defined data type. | UserDataType Name -- | A record type.