aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Helper.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-04-24 15:45:39 +0200
committerMarvin Borner2022-04-24 15:45:39 +0200
commitb2cca2c5584ee92a2fbd006ca7d33f4dddec7d93 (patch)
treeb7a2b54cbc1184b80cf0e1e6387b6b54b9688b0b /src/Helper.hs
parent3b90d4f15ebad7dc15d78195397559bcca3bd8fb (diff)
Tests
Diffstat (limited to 'src/Helper.hs')
-rw-r--r--src/Helper.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Helper.hs b/src/Helper.hs
index 5e02a94..57fb9f4 100644
--- a/src/Helper.hs
+++ b/src/Helper.hs
@@ -14,7 +14,7 @@ type Failable = Either Error
data Expression = Bruijn Int | Variable String | Abstraction Expression | Application Expression Expression
deriving (Ord, Eq)
-data Instruction = Define String Expression | Evaluate Expression | Comment String | Load String
+data Instruction = Define String Expression | Evaluate Expression | Comment String | Load String | Test Expression Expression
deriving (Show)
instance Show Expression where
show (Bruijn x ) = show x