Created
October 6, 2013 12:31
-
-
Save funrep/6853503 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns tob.core | |
(:require [tob.irc])) | |
(def irc (connect codetalk)) | |
(defn -main [& args] | |
(do | |
(login irc user) | |
(write irc "JOIN #lobby") | |
(write irc "PRIVMSG #lobby : hai! im a lisp irc bot") | |
(write irc "QUIT"))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment