Advertisement
Guest User

Untitled

a guest
Jan 27th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. (library (lib)
  2. (export foo)
  3. (import (rnrs))
  4.  
  5. (define-syntax foo
  6. (syntax-rules (import)
  7. ((_ iport) (display 'ok))
  8. ((_ _) (display 'ng)))))
  9.  
  10. (library (lib2)
  11. (export)
  12. (import (lib))
  13. (foo import))
  14.  
  15. (import (lib2))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement