Fork me on GitHub
#clojure-austin
<
2016-07-25
>
clojuregeek02:07:04

I see this code:

(require '[buddy.auth :refer [authenticated? throw-unauthorized]])
(require '[ring.util.response :refer (response redirect)])

clojuregeek02:07:46

in first example the things in the refer are in a vector.. and the second.. is a list …. why ? which way is better ?

norman03:07:26

[] are the preferred style

norman03:07:49

there’s not technical difference