Skip to content

Instantly share code, notes, and snippets.

@funrep
Created October 6, 2013 12:31
Show Gist options
  • Save funrep/6853503 to your computer and use it in GitHub Desktop.
Save funrep/6853503 to your computer and use it in GitHub Desktop.
(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