Welcome to the CHICKEN Scheme pasting service
list map added by Kucuq on Sat Apr 14 17:12:29 2012
(define (lmap func listoflists)
(map
(lambda (list)
(apply func list))
listoflists))(define (lmap func listoflists)
(map
(lambda (list)
(apply func list))
listoflists))