aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Helper.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-07-26 13:52:10 +0200
committerMarvin Borner2022-07-26 13:56:21 +0200
commit2502b1adb0243eb61b156920a6df389c3f883ac4 (patch)
tree83b31741df2a020dad0910d97d5b7074a7b5a03f /src/Helper.hs
parente2eddf3edc1dfd49194bbb69eca518dcee70385f (diff)
Stupidity
Diffstat (limited to 'src/Helper.hs')
-rw-r--r--src/Helper.hs2
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
---