程序代写代做代考 module TrycatParser where

module TrycatParser where

import Control.Applicative

import ParserLib
import TrycatDef

trycat = whitespaces *> stmt <* eof stmt :: Parser Stmt stmt = error "TODO" -- You may organize helper parsers your way. Automarking tests are only on -- trycat and stmt above.