select column from two-dimension list
Posted: Thu Nov 03, 2005 3:09 pm
Is there a more simple way to do this:
Code: Select all
(define (select-column lst col)
(let l '()
(dolist (i lst)
(push (i col) l -1))
l))