Skip to content

Instantly share code, notes, and snippets.

@jphackworth
jphackworth / test.clj
Created November 30, 2013 19:08 — forked from adambard/test.clj
; Comments start with semicolons.
; Clojure is written in "forms", which are just
; lists of things inside parentheses, separated by whitespace.
;
; The clojure reader assumes that the first thing is a
; function or macro to call, and the rest are arguments.
;
; Here's a function that sets the current namespace:
(ns test)