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 ee4b162..33c0855 100644 --- a/src/Helper.hs +++ b/src/Helper.hs @@ -24,7 +24,7 @@ instance Show Expression where "\ESC[33m(\ESC[0m" <> show exp1 <> " " <> show exp2 <> "\ESC[33m)\ESC[0m" type EnvDef = (String, Expression) -type Environment = [(EnvDef, [EnvDef])] +type Environment = [EnvDef] type Program = State Environment --- |