(0 . 0)(1 . 14)
46 USAGE
47
48 (asdf:load-system :logbot)
49 (defvar *bot*)
50 (setf *bot*
51 (logbot:make-logbot
52 "chat.freenode.net" 6667 "nick" "password" "#channel"
53 '("db-name" "db-user" "db-password" "db-host")))
54
55 ; connect in separate thread, returning thread
56 (logbot:ircbot-connect-thread *bot*)
57
58 ; or connect using the current thread
59 ; (logbot:ircbot-connect *bot*)