Skip to content

Instantly share code, notes, and snippets.

@swannodette
Created December 8, 2011 17:52
Show Gist options
  • Save swannodette/1447808 to your computer and use it in GitHub Desktop.
Save swannodette/1447808 to your computer and use it in GitHub Desktop.
hard.clj
(defn anyo [g]
(conde
[g succeed]
[(anyo g)]))
(def nevero (anyo fail))
(run* [q]
(conde
[nevero]
[nevero])
(conde
[nevero])
(== true false))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment