For example I have two async methods

(get-a 10 (lambda (a) (get-b a (lambda (b) (display b)))

but I want to write something similar to

(define (a (get-a 10)))
(define (b (get-b a)))
(display b)
link|improve this question

59% accept rate
feedback

1 Answer

No. CPS is a global transformation, and macros local transformers. See also "On the Expressive Power of Programming Languages".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.