How can I drop the nth item in a collection? I want to do something like this: (def coll [:apple :banana :orange]) (drop-nth 0 coll) ;=> [:banana :orange] ...
確定! 回上一頁