Hacker News new | ask | show | jobs
by puppetsock 5702 days ago

  (def check-usernames (u)
    (or (nil? u)
      (and
        (has-email? (user (car u)))
        (check-usernames (cdr u)))))
or something