annotate parse.ur @ 28:f55f66c6fdee

Migrate ap method to Record module.
author Edward Z. Yang <ezyang@mit.edu>
date Thu, 26 Jul 2012 16:48:37 -0400
parents 8eaaca74a64c
children
rev   line source
adam@9 1 (** Datatypes for describing parse results *)
adam@9 2
adam@9 3 datatype parse a =
adam@9 4 Success of a
adam@9 5 | Failure of string