Created
October 7, 2010 01:24
-
-
Save evantravers/614398 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
(dribble "output") | |
(print "testing hextodec") | |
(load "hextodec") | |
(print (hextodec '(a))) | |
(print (hextodec '(1 f))) | |
(print (hextodec '(5 a 6 b 7 c 8 d 9 e))) | |
(print "testing perfect") | |
(load "perfect") | |
(print (perfect 6)) | |
(print (perfect 298)) | |
(print (perfect 496)) | |
(print "testing delete") | |
(load "delete") | |
(print (delete 'a '(a b r a c a d a b r a))) | |
(print (delete 'b '(no bs here))) | |
(print (delete 'nest '(nest (second nest level) (third (nest) level) (((big nest)))))) | |
(dribble) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment