diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-08-16 15:03:05 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-08-16 15:03:05 -0400 |
commit | 6cac02596e21666de5658f83957d3fa7d7b60a8c (patch) | |
tree | ba8d7f45822b7cba62fe659ce25ea3504475ef73 /src/core.sml | |
parent | e9456cb231725d65a9cdd11dc3d4549fe7254e06 (diff) |
Corifying con-tuples
Diffstat (limited to 'src/core.sml')
-rw-r--r-- | src/core.sml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core.sml b/src/core.sml index ce14ac04..30bd8b76 100644 --- a/src/core.sml +++ b/src/core.sml @@ -35,6 +35,7 @@ datatype kind' = | KName | KRecord of kind | KUnit + | KTuple of kind list withtype kind = kind' located @@ -57,6 +58,9 @@ datatype con' = | CUnit + | CTuple of con list + | CProj of con * int + withtype con = con' located datatype datatype_kind = datatype Elab.datatype_kind |