diff options
-rw-r--r-- | Everything.agda | 4 | ||||
-rw-r--r-- | src/Data/BinOp.agda | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/Everything.agda b/Everything.agda new file mode 100644 index 0000000..0127e7e --- /dev/null +++ b/Everything.agda @@ -0,0 +1,4 @@ +{-# OPTIONS --without-K --safe #-} +module Everything where + +import Data.BinOp diff --git a/src/Data/BinOp.agda b/src/Data/BinOp.agda new file mode 100644 index 0000000..610c68d --- /dev/null +++ b/src/Data/BinOp.agda @@ -0,0 +1,6 @@ +{-# OPTIONS --without-K --safe #-} + +module Data.BinOp where + +data BinOp : Set where + Function : BinOp |