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
(define (copy-instance obj) | |
(rlet1 new (make (class-of obj)) | |
(dolist [slot (class-slots (class-of obj))] | |
(set! (~ new (slot-definition-name slot)) | |
(~ obj (slot-definition-name slot)))))) |
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
;; CPSในใฟใคใซ.ใใใฏใๅฎใฏ้ๅๆๅฆ็ใชใฉ็ตๆใใใค่จ็ฎใใใใๅใใใชใๅ ดๅใฎใขใใซใ | |
;; ้ๅธธใฎๅๆๅฆ็ใจใฏ็ฐใชใใๅผๆฐใฎcontใใใค่จ็ฎใใใใใฏๅใใใชใใใ*ๆบๅ*ใใงใใใจใcontใซๆธกใใๆฌกใฎ่จ็ฎใ่กใใใใ | |
(define (add1 x cont) | |
(cont (+ x 1))) | |
(define (mul2 x cont) | |
(cont (* x 2))) | |
;; ใคใชใใฆใฟใใ |