Guest User

Untitled

a guest
May 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. (defn handle-ctcp
  2. "Takes a CTCP message and responds to it."
  3. [irc nick ctcp-s]
  4. (send-notice
  5. irc nick (condp = (apply str (remove #(= \ %) ctcp-s))
  6. "VERSION" "irclj version ohai"
  7. "TIME" "Time for you to SHUT THE FUCK UP."
  8. "FINGER" "OMG, DADDY TOUCHED ME IN THE BAD PLACE.!")))
Add Comment
Please, Sign In to add comment