Newbie trying to learn Lisp. I want to apply sqrt (or any function) to several lists in Clisp. For eg. using mapcar we can apply to one list such as (mapcar #'sqrt ( 10 20 30)).
But what about cases where the lists are ((10 20) (30 40) (50)). Thanks in advance for the help.