module Main where import Parsec import ParsecToken pLet = do symbol "let" id <- identifier symbol "=" x <- integer return (id,x) main = print (parse pLet "" "let a = 232")