diff options
author | Marvin Borner | 2023-02-23 14:59:34 +0100 |
---|---|---|
committer | Marvin Borner | 2023-02-23 14:59:34 +0100 |
commit | 99d8f364d6376886dd49a51ff4c3afe13337cfc4 (patch) | |
tree | 6952df5babd0fbdf282978d91248e3ef93ffa140 /src/Helper.hs | |
parent | 2940495ac437a23084383567be6b3bef9ee9fb8d (diff) |
Added time 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 98cdaea..97de641 100644 --- a/src/Helper.hs +++ b/src/Helper.hs @@ -138,7 +138,7 @@ instance Show Expression where show (Prefix p e) = show p <> " " <> show e data Command = Input String | Import String String | Test Expression Expression deriving (Show) -data Instruction = Define Identifier Expression [Instruction] | Evaluate Expression | Comment | Commands [Command] | ContextualInstruction Instruction String +data Instruction = Define Identifier Expression [Instruction] | Evaluate Expression | Time Expression | Comment | Commands [Command] | ContextualInstruction Instruction String deriving (Show) data EvalConf = EvalConf |