diff options
author | Marvin Borner | 2023-03-12 00:03:51 +0100 |
---|---|---|
committer | Marvin Borner | 2023-03-12 00:03:51 +0100 |
commit | e789e11f8e478fe5987101424cf5c9c32cc6a29b (patch) | |
tree | f37f5a16a2337fe68d76ddd1982022b9b2a340a8 /src/Helper.hs | |
parent | bc237aa79e64caf87ed9a51e41c284bbca51b176 (diff) |
Added length&blc commands
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 bfeeb66..2b2e31c 100644 --- a/src/Helper.hs +++ b/src/Helper.hs @@ -147,7 +147,7 @@ instance Show Expression where . foldr1 (\x y -> x . showString " " . y) (map shows ms) . showString "\ESC[33m)\ESC[0m" showsPrec _ (Prefix p e) = shows p . showString " " . shows e -data Command = Input String | Watch String | Import String String | Test Expression Expression | ClearState | Time Expression +data Command = Input String | Watch String | Import String String | Test Expression Expression | ClearState | Time Expression | Length Expression | Blc Expression deriving (Show) data Instruction = Define Identifier Expression [Instruction] | Evaluate Expression | Comment | Commands [Command] | ContextualInstruction Instruction String deriving (Show) |