-
+ E6091B4D7AD0F92EBA4E8C506E2EEA56B5468098FECC9E5F51AAC69521E94E80D805873018492D62D3E5279E410BBD2C5CC498B36C0D9F880699BD914E883B2F
ircbot/USAGE
(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