We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 204c679 commit c404b36Copy full SHA for c404b36
test/Main.purs
@@ -90,6 +90,9 @@ isA A = true
90
isA _ = false
91
92
main = do
93
+
94
+ parseTest "\n" Nil $ many $ char '\n' *> char '\n'
95
96
parseTest "(((a)))" 3 nested
97
parseTest "aaa" (Cons "a" (Cons "a" (Cons "a" Nil))) $ many (string "a")
98
parseTest "(ab)" (Just "b") $ parens do
0 commit comments