Created
June 3, 2014 01:00
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
(defun test () | |
(let* ((dog1 (: dog new)) | |
(dog2 (: dict new)) | |
(dog1_2 (dot dog1 'name 'lola)) | |
(dog2_2 (dot dog2 'name 'rocky))) | |
(list (dot dog1_2 'name) | |
(dot dog2_2 'name)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment