Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Last active March 13, 2017 20:23
Show Gist options
  • Save deque-blog/9028e3f8fa83f01d0a696cfae437fd41 to your computer and use it in GitHub Desktop.
Save deque-blog/9028e3f8fa83f01d0a696cfae437fd41 to your computer and use it in GitHub Desktop.
(s/def ::left ::bad-binary-tree)
(s/def ::right ::bad-binary-tree)
(s/def ::bad-binary-tree
(s/cat
:value any?
:children (s/keys :opt [::left ::right])))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment