aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Helper.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-07-18 01:44:38 +0200
committerMarvin Borner2022-07-18 01:44:38 +0200
commit745147f88f400cced478dd588a2dfd7a7c2140a8 (patch)
tree3c8e963275ef111b21315a662fd601286f4e123b /src/Helper.hs
parent313e883f5e2146a2005ae0ed6a36af835cbbc961 (diff)
Moved/improved standard library
and other things
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 76a1f83..5c31aba 100644
--- a/src/Helper.hs
+++ b/src/Helper.hs
@@ -12,7 +12,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 | Import String | Test Expression Expression
+data Instruction = Define String Expression | Evaluate Expression | Comment String | Import String String | Test Expression Expression
deriving (Show)
instance Show Expression where
show (Bruijn x ) = "\ESC[31m" <> show x <> "\ESC[0m"