Skip to content

Instantly share code, notes, and snippets.

View daavir's full-sized avatar

Dávvir Manah daavir

View GitHub Profile
@daavir
daavir / ns-cheatsheet.clj
Created October 10, 2025 10:29 — 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.