Skip to content

Instantly share code, notes, and snippets.

@dLobatog
Created July 5, 2012 01:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dLobatog/3050377 to your computer and use it in GitHub Desktop.
Save dLobatog/3050377 to your computer and use it in GitHub Desktop.
(defstruct tree :val :left :right)
(def my-tree (struct tree 1 (struct tree 2) (struct tree 3 (struct tree 4) (struct tree 5))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment