about summary refs log tree commit diff
path: root/Examples/States/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/States/Program.cs')
-rw-r--r--Examples/States/Program.cs7
1 files changed, 3 insertions, 4 deletions
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();
         }
     }
 }