USAGE
 1 USAGE
2
3 (asdf:load-system :ircbot)
4 (defvar *bot*)
5 (setf *bot*
6 (ircbot:make-ircbot
7 "chat.freenode.net" 6667 "nick" "password" "#channel"))
8
9 ; connect in separate thread, returning thread
10 (ircbot:ircbot-connect-thread *bot*)
11
12 ; or connect using the current thread
13 ; (ircbot:ircbot-connect *bot*)
14