anotherTypesetter/text.lisp

12 lines
205 B
Common Lisp
Raw Normal View History

2024-04-10 22:56:29 +08:00
(letrec ((
map (lambda (f l)
(if (!= l '())
(cons (f (car l)) (map f (cdr l)))
'()))
))
(begin
(addPDFPage '())
(addPDFPage '())
(map (lambda (x) (+ x 2)) '(8 9 10))
))