mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 09:12:34 +03:00
0986cf177b
I got fed up with being puzzled whenever edwin's trailing commas and my leading commas clash and the error location is the opening square bracket rather than the repeated comma.
10 lines
76 B
Idris
10 lines
76 B
Idris
list : List Nat
|
|
list
|
|
= [ 0
|
|
, 1
|
|
, 2
|
|
, 3
|
|
, 4,
|
|
, 5
|
|
]
|