diff options
author | Marvin Borner | 2022-08-17 18:09:11 +0200 |
---|---|---|
committer | Marvin Borner | 2022-08-17 18:09:11 +0200 |
commit | 266286d108b8304efc67d64f47c1ee9d8d4b17c9 (patch) | |
tree | c1444e9b7a3c4c5ad9a6fb6bfb50903bb8a641ed /src/Helper.hs | |
parent | fee84dce1ed2ac8448b93b7bfaff934bd3c72041 (diff) |
Added input instruction
Diffstat (limited to 'src/Helper.hs')
-rw-r--r-- | src/Helper.hs | 2 |
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" |