diff options
author | Chloe Brown <chloe.brown.00@outlook.com> | 2023-03-31 16:17:22 +0100 |
---|---|---|
committer | Chloe Brown <chloe.brown.00@outlook.com> | 2023-03-31 16:17:22 +0100 |
commit | 78d0fa7cb59804623e9dc06ba6cc6cce3339d9cd (patch) | |
tree | e33557ad656e78aa11de85e2b3352b4935b1024a | |
parent | 032c76ec0b0ea2937801ab117232a5f1a1ffd7b2 (diff) |
Define Contexts.
-rw-r--r-- | src/Core/Context.idr | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Core/Context.idr b/src/Core/Context.idr new file mode 100644 index 0000000..da9c28b --- /dev/null +++ b/src/Core/Context.idr @@ -0,0 +1,12 @@ +module Core.Context + +import public Core.Name + +-- Definition ------------------------------------------------------------------ + +public export +data Context : Type where + Lin : Context + (:<) : Context -> Name -> Context + +%name Context sx, sy, sz |