ircsharp/Examples/States/Program.cs

12 lines
233 B
C#

namespace States
{
public static class Program
{
private static void Main(string[] args)
{
var client = new Client("localhost", 6667, "statesbot");
client.Start();
}
}
}