diff options
author | Tom Smeding <tom@tomsmeding.com> | 2023-04-15 22:04:36 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2023-04-15 22:04:36 +0200 |
commit | aea2a97d0aace7f7466e55bf8fed7e47497d2dc7 (patch) | |
tree | 1b1766f5a09c2902f8004396175c54b58599739f /AST.hs | |
parent | a06d17e5f4ec8f5011f9ef264bd15d7e4a19c1fb (diff) |
Some parser work
Diffstat (limited to 'AST.hs')
-rw-r--r-- | AST.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ data FunDef t = FunDef Name (Maybe Type) [FunEq t] deriving (Show) newtype Name = Name String - deriving (Show) + deriving (Show, Eq) data Type = TApp Type [Type] |