You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
274B

  1. (module test-parse ()
  2. (import scheme)
  3. (import (chicken base))
  4. (import (chicken syntax))
  5. (import srfi-1)
  6. (import test)
  7. (import comparse)
  8. (import srfi-14)
  9. (import parse)
  10. (test "apple" (parse (lift list->string (one-or-more (in char-set:letter))) "apple")))