Created
June 12, 2012 07:21
-
-
Save tomelam/2915864 to your computer and use it in GitHub Desktop.
Simple Lisp tree structure #1
This file contains 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
;;;; In this Lisp tree, leaves are atoms and children with children are lists. | |
(a | |
(b | |
c | |
(d | |
(e f)) | |
g | |
h)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment