Last active
August 29, 2015 14:12
-
-
Save timsgardner/f36c8eabaca47811a93b to your computer and use it in GitHub Desktop.
clesgo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns madness) | |
(defn reset [] | |
((fn clesgo [n] | |
(defn go-clesgo [m] | |
(clesgo (+ n m))) | |
n) | |
1)) | |
(defn abandon-hope [] | |
(reset) | |
[(last | |
(repeatedly 1000 | |
(let [f go-clesgo] #(f 1)))) | |
(last (repeatedly 1000 #(go-clesgo 1)))]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment