Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. command0 :: Parser Cmd
  2. command1 :: Parser Cmd
  3. command2 :: Parser Cmd
  4. ...
  5. command0 = do c1 <- command1
  6. do symbol ";"
  7. c2 <- command0
  8. return (Seq c1 c2)
  9. +++
  10. ...
  11. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement