Skip to content

Instantly share code, notes, and snippets.

### Keybase proof
I hereby claim:
* I am eliwinkelman on github.
* I am eliwinkelman (https://keybase.io/eliwinkelman) on keybase.
* I have a public key ASBUPpsZs9ILR4UyDwteO2cxqgLQQtxKdFPwDfW8H79Sjwo
To claim this, I am signing this object:
@eliwinkelman
eliwinkelman / quine.clj
Created August 1, 2019 21:17
Clojure Quine with parallelism
(use 'clojure.core.reducers)(def Q '(let [S (str "(use 'clojure.core.reducers)(def Q " Q ") (eval Q)")] (foldcat (map (fn* [x] (spit (str x) S)) (vec (range 750000))))))(eval Q)