diff --git a/src/Core/Syntax.hs b/src/Core/Syntax.hs index ad8b67d..4bd3773 100644 --- a/src/Core/Syntax.hs +++ b/src/Core/Syntax.hs @@ -279,15 +279,6 @@ instance (Pretty b) => Pretty (Expr b) where "case" <+> pretty e <+> "of" $$ nest 2 (explicitLayout as) -{- - -x = pretty $ desugarRlpProg [rlpProg| - main = 3 - data B = T | F -|] - --} - instance (Pretty b) => Pretty (Alter b) where pretty (Alter c as e) = hsep [pretty c, hsep (pretty <$> as), "->", pretty e]