Last active
December 18, 2015 10:19
-
-
Save grauwoelfchen/5767839 to your computer and use it in GitHub Desktop.
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
(define my-tree | |
(t-node 1 | |
(t-node 2 | |
(t-node 4 t-empty t-empty) | |
(t-node 5 | |
(t-node 7 t-empty t-empty) | |
(t-node 8 t-empty t-empty))) | |
(t-node 3 | |
t-empty | |
(t-node 6 | |
(t-node 9 t-empty t-empty) | |
t-empty)))) | |
(printf "my-tree : ~s~n" my-tree) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment