您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
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")))