diff options
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 |