Reader
parse
defn
(Fn [(Ref String a)] (Result (Array (Box Form)) ParseErr))
(parse src)
parses a Carp source string into an array of top-level
Form forms. Comments are preserved as Form.Cmt nodes interspersed
with real forms.
parse-form
defn
(Fn [(Ref String a)] (Result Form ParseErr))
(parse-form src)
parses exactly one top-level Form form. Use
parse for whole-file inputs.