Spotlight archive

Guess the language.

Three lines, three guesses.

MODESpotlight0/3
Spotlight · ?.??
1(def users [{:id 1 :active true :email "a@x.com"}])
2(defn active-users [coll]
3 (->> coll (filter :active) (map #(select-keys % [:id :email]))))
Keep going