Skip to content

Instantly share code, notes, and snippets.

View inwalkeddub's full-sized avatar

kevin rathbun inwalkeddub

View GitHub Profile
(ns switch
(:require [clojure.pprint :as pprint]))
(defn project-clj-map [filename]
(->> (slurp filename)
(read-string)
(drop 1)
(partition 2)
(map vec)
(into {})))