Hi,
I want to eliminate the double-execution of (condition-on a) in the following source code:
I want to eliminate the double-execution of (condition-on a) in the following source code:
(loop for a in L
when (consp (condition-on a))
do (return (condition-on a)))
How do I do this?