src/clojurecraft/util.clj @ 085e63240d4f

Bit twiddling.
author Steve Losh <steve@stevelosh.com>
date Wed, 03 Aug 2011 21:11:51 -0400
parents 3b17a92aa31b
children c41de2845803
(ns clojurecraft.util)

(defmacro l [& body]
  `(let [result# (~@body)]
     (println result#)
     result#))

(defn invert [m]
  (apply assoc {} (mapcat reverse m)))