Advertisement
Guest User

Robert Fisher

a guest
Mar 5th, 2009
495
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 0.32 KB | None | 0 0
  1. #!r6rs
  2. (import (rnrs))
  3.  
  4. (define text '("#!r6rs\n(import (rnrs))\n(define text '"
  5.                #f
  6.                ")\n(for-each(lambda(item)(if item(display item)(write text)))text)\n"))
  7.  
  8. (for-each (lambda (item)
  9.             (if item
  10.                 (display item)
  11.                 (write text)))
  12.           text)
  13.  
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement