Advertisement
Guest User

Untitled

a guest
Apr 4th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. ;; Chess ICS
  2. (defun playchess ()
  3. (interactive)
  4. (setq username (read-string "Username: "))
  5. (if (string= username "guest")
  6. (chess-ics "freechess.org" 5000 username)
  7. (setq pass (read-passwd "Password: "))
  8. (chess-ics "freechess.org" 5000 username pass)
  9. )
  10. )
  11. (provide 'playchess)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement