FREE Subscription to Dr. Dobb’s Digest: Same Great Content, New Digital Edition
Site Archive (Complete)
Architecture & Design
Email
Print
Reprint

add to:
Del.icio.us
Digg
Google
Furl
Slashdot
Y! MyWeb
Blink
April 01, 2004

Building Little Languages with Macros

(Page 10 of 12)
Apr04: Building Little Languages With Macros


(a)
(define-get/set-var clock get-time set-time!)
(define-get/set-var pwd getcwd setcwd)
(define-get/set-var user getuid setuid)
 ...

(b)
(define-syntax define-get/set-var
   (syntax-rules ()
      ((define-get/set-var id get set)
      (define-syntax id
         (syntax-id-rules (set!)
         ((set! id e) (set e))
         ((id a (... ...)) ((get) a (... ...)))
         (id (get))))])))

Example 7: Macro-generating macros.

Previous Page | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 Next Page
TOP 5 ARTICLES
No Top Articles.



MICROSITES
FEATURED TOPIC

ADDITIONAL TOPICS

INFO-LINK