Guest User

Untitled

a guest
Apr 26th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. (defun print-alphabet (x y)
  2. (setq alphabet (open "alphabet" :direction :output))
  3. (loop
  4. (cond ((equal x y) (close alphabet)))
  5. (incf x)
  6. (princ (code-char x) alphabet) (terpri alphabet) ) )
Advertisement
Add Comment
Please, Sign In to add comment