1 Star 13 Fork 0

jianchiyiye/cylisp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test-ut.scm 828 Bytes
一键复制 编辑 原始数据 按行查看 历史
jianchiyiye 提交于 2021-11-26 16:14 . fix-bug-1126
(define (_test l)
(if (pair? l)
(begin
(_test-func (car l))
(_test (cdr l)))))
(define (_test-func l)
(if (pair? l)
(let ((f (eval (car l))))
(display (car l))
(newline)
(_t (cdr l) f))))
(define (_t l f)
(let ((res #f))
(if (pair? l)
(begin
;;(display (format "[~a]" l))
(display (format "~S" (car l)))
(display "==>")
(set! res (apply f (car (car l))))
(display (format "~S" res))
(display " ")
(if (equal? res (cadr (car l)))
(display "OK")
(display "NOT MATCH!"))
(newline)
(_t (cdr l) f)
)
(begin
(display "TEST OVER.")
(newline))
)))
(define (file->list fn)
(let ((p (open-input-file (format "~a" fn)))(l '()))
(set! l (read p))
(close-port p)
l))
(define (_test-file fn)
(let ((l (file->list fn)))
(_test l)))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Scheme
1
https://gitee.com/jianchiyiye/cylisp.git
git@gitee.com:jianchiyiye/cylisp.git
jianchiyiye
cylisp
cylisp
master

搜索帮助