Closed jcubic closed 6 months ago
Handle code from the Scheme survey.
(define-syntax f (syntax-rules () ((f a ... x . y) (begin (begin (write a) (display " ") (write x) (display " ") (write y) (display " ") (newline)) ...)))) (f 10 20 30 'a 'b)
Should print:
10 b () 20 b () 30 b () a b ()
Handle code from the Scheme survey.
Should print: