Work for me after replacing the ASCII 92 character you used as a single quote with a bonafide single quote character ASCII 27. Here is the working code:Quote from: "Sammo"
(define number-list '(100 300 500 701 900 1100 1300 1500))
(dolist (n number-list (!= (mod n 2) 0))
(println (/ n 2)))
Thanks Sammo ,
That works now
still I am confused which function is executed first in this code,
(dolist (n number-list (!= (mod n 2) 0))
regards