diff options
author | Chloe Brown <chloe.brown.00@outlook.com> | 2021-01-23 20:09:11 +0000 |
---|---|---|
committer | Chloe Brown <chloe.brown.00@outlook.com> | 2021-01-23 20:10:39 +0000 |
commit | cd8ab887cdfdf3aa8dfc66871cc27be9677945c3 (patch) | |
tree | 178194b90421278ed70c1e97ed58b2e24a89194f /src/Cfe/Expression.agda | |
parent | 70defec34e785b42285065290f1e10065e14c6e2 (diff) |
Define expressions
Diffstat (limited to 'src/Cfe/Expression.agda')
-rw-r--r-- | src/Cfe/Expression.agda | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Cfe/Expression.agda b/src/Cfe/Expression.agda new file mode 100644 index 0000000..e264926 --- /dev/null +++ b/src/Cfe/Expression.agda @@ -0,0 +1,7 @@ +{-# OPTIONS --without-K --safe #-} + +module Cfe.Expression + {ℓ} (A : Set ℓ) + where + +open import Cfe.Expression.Base A public |