Recursive parsers with comparse added by vktec on Mon Oct 3 11:24:16 2016

(define foo
  (recursive-parser (sequence (any-of (is #\a)
                                      foo)
                              (is #\b))))

(parse foo "abb")

;; Expected output:
;; ((#\a #\b) #\b)
;; #<parser-input-end>

;; Actual output:
;; (#\a #\b)
;; #<parser-input char-seq-cursor "b" ...>