V
vtcad
Guest
How do I remove an element from a list? I am trying to remove an
element nil.
thanks,
element nil.
thanks,
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
(setq aList (remd nil aList))aList = list( "a" "b" "1" "2" nil "c" "3" nil "d" "4" nil "5" )
remd( nil aList )
aList => ( "a" "b" "1" "2" "c" "3" "d" "4" "5" )