Skip to content

Instantly share code, notes, and snippets.

View GeoffPurdy's full-sized avatar

Geoffrey Purdy GeoffPurdy

View GitHub Profile
@GeoffPurdy
GeoffPurdy / test.clj
Created January 18, 2014 17:23 — 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)