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

@@ -6,6 +6,9 @@ import Prelude
blah : List Int
blah = [ 1, 2, 3]
pairs : List (Int × Int)
pairs = [ (1,2), (3,4)]
bar : List Int Int
bar [ ] = 0
bar [x] = 1