Created
January 30, 2014 20:18
-
-
Save SaitoAtsushi/8717885 to your computer and use it in GitHub Desktop.
Ypsilon 0.9.6-trunk/r503 で期待と異なる結果が返ってくる
This file contains hidden or 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
#!r6rs | |
(library (reinterpret) | |
(export reinterpret) | |
(import (rnrs)) | |
(define-syntax reinterpret | |
(lambda(stx) | |
(syntax-case stx () | |
((_ x) | |
(free-identifier=? (datum->syntax #'k (syntax->datum #'x)) #'x))))) | |
) |
This file contains hidden or 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
#!r6rs | |
(import (rename (reinterpret) (reinterpret reinterpret:reinterpret)) | |
(rnrs)) | |
(display (reinterpret:reinterpret reinterpret:reinterpret)) | |
;; expect #f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment