Fixes to parsing of lists vs tuples, dropping tuple sections for now.

This commit is contained in:
2026-04-04 20:37:35 -07:00
parent 2643620a98
commit 66286c4b19
10 changed files with 64 additions and 53 deletions

View File

@@ -88,7 +88,7 @@ xs <>< (y :: ys) = (xs :< y) <>< ys
-- f $ a = f a
infixr 8 _×_
infixr 2 _,_
infixr 2 _,_ -- deprecated decl, it is special now
data a × b = (a,b)
fst : a b. a × b a