Advertisement
Guest User

Untitled

a guest
Jan 28th, 2015
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. def make_ircCmd(cmd):
  2.     def _ircCmd():
  3.         print cmd # instead of irc.send
  4.     return _ircCmd
  5.  
  6. pong = make_ircCmd("PONG :Pong")
  7. join = make_ircCmd("join: #channel")
  8. etc = make_ircCmd("etc")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement