Guest User

Untitled

a guest
Oct 17th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #include <iostream>
  2. #include "irc.h"
  3. using namespace std;
  4. using namespace aaix;
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8.     IRC irc;
  9.     irc.connect("irc.wyldryde.org", "6667");
  10.     irc.NICK("aaixbot");
  11.     /*
  12.     irc.USER("aaixbot", 0, "aaixbot");
  13.     while(irc.get())
  14.     {
  15.         cout << irc.recv_string << endl;
  16.     }
  17.     */
  18.     return 0;
  19. }
Add Comment
Please, Sign In to add comment