1
1
mirror of https://github.com/github/semantic.git synced 2024-12-25 07:55:12 +03:00

Stub in a Haskell parser.

This commit is contained in:
Rob Rix 2015-12-15 14:53:34 -05:00
parent cbf313f011
commit d766f346fa

View File

@ -1,3 +1,7 @@
module Haskell where module Haskell where
import Text.Parsec import Text.Parsec
import Text.Parsec.String
haskellParser :: Parser String
haskellParser = many anyChar