(0 . 0)(1 . 14)
 40 USAGE
 41 
 42 (asdf:load-system :ircbot)
 43 (defvar *bot*)
 44 (setf *bot*
 45       (ircbot:make-ircbot
 46        "chat.freenode.net" 6667 "nick" "password" "#channel"))
 47 
 48 ; connect in separate thread, returning thread
 49 (ircbot:ircbot-connect-thread *bot*)
 50 
 51 ; or connect using the current thread
 52 ; (ircbot:ircbot-connect *bot*)
 53