kekkonen/test-parse.scm

12 lines
274 B
Scheme
Raw Normal View History

2021-11-30 10:22:15 -05:00
(module test-parse ()
(import scheme)
(import (chicken base))
(import (chicken syntax))
(import srfi-1)
(import test)
(import comparse)
(import srfi-14)
(import parse)
(test "apple" (parse (lift list->string (one-or-more (in char-set:letter))) "apple")))