Skip to content

Instantly share code, notes, and snippets.

View notklaatu's full-sized avatar

Seth Kenlon notklaatu

View GitHub Profile
import java.io.*;
import java.net.*;
import java.util.*;
public abstract class IRCMessageLoop implements Runnable {
Socket server;
OutputStream out;
String theChannel;
IRCMessageLoop(String serverName, int port) {