Skip to content

Instantly share code, notes, and snippets.

@hiredman
Created March 7, 2012 22:07
Show Gist options
  • Save hiredman/1996557 to your computer and use it in GitHub Desktop.
Save hiredman/1996557 to your computer and use it in GitHub Desktop.
ns form
(ns foo.bar ;; ns name was left out of the original
(:use [baz.bar] ;; incorrect, must have an :only
[baz.bar :only [a b c]])
(:require [foo.bar]
[foo.bar.baz :as baz]
[foo.bar.quux :refer [a b c]])
(:import (java.util List Set Map)
(java.util.concurrent AtomicLong)))
@remleduff
Copy link

Why'd you vector-ize foo.bar in the :require clause?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment