How can I test if require is working in clojure. Require in REPL returns nil. I don't know if nil means it worked. The namespace for oauth doesn't seem to set.
Error
Caused by: java.lang.RuntimeException: No such namespace: oauth
(ns hello.core)
(defn -main
[]
(require 'twitter '[oauth.client :as oauth])
;; Make a OAuth consumer
(def oauth-consumer (oauth/make-consumer <key>
<secret>
"https://api.twitter.com/oauth/request_token"
"https://api.twitter.com/oauth/access_token"
"https://api.twitter.com/oauth/authorize"
:hmac-sha1))