From 304df7805b9925c2edd992fd4177eef80197f807 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Thu, 14 May 2020 22:17:22 -0400 Subject: working ircstates example --- Examples/States/Program.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'Examples/States/Program.cs') diff --git a/Examples/States/Program.cs b/Examples/States/Program.cs index 8fc42b8..8ad7bf7 100644 --- a/Examples/States/Program.cs +++ b/Examples/States/Program.cs @@ -1,12 +1,11 @@ -using System; - -namespace StatesSample +namespace StatesSample { public static class Program { private static void Main(string[] args) { - Console.WriteLine("Hello World!"); + var client = new Client("localhost", 6667, "statesbot"); + client.Start(); } } } -- cgit 1.4.1