| Paste number 24579: | what is this doing?? |
| Pasted by: | syntaxfree |
| When: | 2 years, 10 months ago |
| Share: | Tweet this! | http://paste.lisp.org/+IYR |
| Channel: | #haskell |
| Paste contents: |
parens :: Parser ()
parens = do{ char '('
; parens
; char ')'
; parens
}
<|> return ()This paste has no annotations.