Created
March 14, 2020 11:47
-
-
Save g000001/d81c01f652972f9ac2310f3b9da1d479 to your computer and use it in GitHub Desktop.
shadowing
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
(progn | |
#.(set-macro-character #\[ (lambda (srm chr) | |
(declare (ignore chr)) | |
(read-delimited-list #\] srm T))) | |
[list 0 | |
1 | |
2 | |
#.(progn | |
(set-macro-character #\[ (lambda (srm chr) | |
(declare (ignore chr)) | |
(coerce (read-delimited-list #\] srm T) | |
'vector))) | |
(values)) | |
[3 4]]) | |
→ (0 1 2 #(3 4)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment