摘要: 1 #lang racket 2 3 ;;;;;;;;;;;;;;;;;;;2.21 4 (define (square-list items) 5 (if (null? items) 6 null 7 (cons (square (car items)) 8 (square-list (cdr items))))) 9 ... 阅读全文
posted @ 2017-02-13 22:04 lan126 阅读(184) 评论(0) 推荐(0) 编辑