Skip to content

Instantly share code, notes, and snippets.

View sachinpkale's full-sized avatar

Sachin Kale sachinpkale

  • AWS
  • Bangalore, India
View GitHub Profile
@sachinpkale
sachinpkale / ns-cheatsheet.clj
Last active September 12, 2016 11:09 — forked from ghoseb/ns-cheatsheet.clj
Clojure ns syntax cheat-sheet
;;
;; NS CHEATSHEET
;;
;; * :require makes functions available with a namespace prefix
;; and optionally can refer functions to the current ns.
;;
;; * :import refers Java classes to the current namespace.
;;
;; * :refer-clojure affects availability of built-in (clojure.core)
;; functions.