Fixes to parsing of lists vs tuples, dropping tuple sections for now.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user