aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Helper.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-08-17 18:09:11 +0200
committerMarvin Borner2022-08-17 18:09:11 +0200
commit266286d108b8304efc67d64f47c1ee9d8d4b17c9 (patch)
treec1444e9b7a3c4c5ad9a6fb6bfb50903bb8a641ed /src/Helper.hs
parentfee84dce1ed2ac8448b93b7bfaff934bd3c72041 (diff)
Added input instruction
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 47c106d..f53a700 100644
--- a/src/Helper.hs
+++ b/src/Helper.hs
@@ -91,7 +91,7 @@ printBundle ParseErrorBundle {..} =
data Expression = Bruijn Int | Variable String | Abstraction Expression | Application Expression Expression | Infix Expression String Expression | Prefix String Expression
deriving (Ord, Eq)
-data Instruction = Define String Expression [Instruction] | Evaluate Expression | Comment | Import String String | Test Expression Expression | ContextualInstruction Instruction String
+data Instruction = Define String Expression [Instruction] | Evaluate Expression | Comment | Input String | Import String String | Test Expression Expression | ContextualInstruction Instruction String
deriving (Show)
instance Show Expression where
show (Bruijn x ) = "\ESC[91m" <> show x <> "\ESC[0m"