Skip to content

Instantly share code, notes, and snippets.

View jaffee's full-sized avatar
💭
expunging memory allocations

Matthew Jaffee jaffee

💭
expunging memory allocations
View GitHub Profile

Keybase proof

I hereby claim:

  • I am jaffee on github.
  • I am jaffee (https://keybase.io/jaffee) on keybase.
  • I have a public key whose fingerprint is FCE5 1D43 AF40 07FB 24FB 5CF2 264A 4BAA 4E1E 38EF

To claim this, I am signing this object:

@jaffee
jaffee / core.clj
Created April 11, 2014 18:06
Minimal example of midje failing with AOT compilation. lein repl and lein run fail. put core.clj in a subdirectory src/org/midjetest/
(ns org.midjetest.core
(:require [midje.sweet :as m]))
(defn addtwo [a] (+ 2 a))
(m/fact "addtwo adds two to numbers"
(addtwo 3) => 5)
(defn -main
([] (println (addtwo 5))))