Created
February 14, 2017 21:28
-
-
Save deque-blog/1d6d1e298c8646f83587693d7fd89a31 to your computer and use it in GitHub Desktop.
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
clojureFunctionGen :: Int -> Gen String | |
clojureFunctionGen size = | |
toClojureFunction | |
<$> genName | |
<*> fmap optimize (genExpr size) | |
generate (clojureFunctionGen 30) | |
> "(defn ptvkegely [c j m n t u y] (+ -64 m c t y n j u) )" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment