|
|
От: |
lomeo
|
http://lomeo.livejournal.com/ |
| Дата: | 12.09.06 07:55 | ||
| Оценка: | 14 (2) | ||
(define (apply2 proc . lst)
(define (gather lst)
(if (null? (cdr lst))
(car lst)
(cons (car lst) (gather (cdr lst)))))
(eval (cons proc (gather lst))))