implicit renaming macro #2 added by carl on Mon May 14 14:38:34 2012

(define-syntax make-hello-proc
  (ir-macro-transformer
    (lambda (form inject compare)
      `(define (, (string-append "my-" (cadr form)))
         (printf "Hello, World!~%")))))

(make-hello-proc hello)
(my-hello)