From af9c4a049dccc4d34677c453d61d6237d26a9f5e Mon Sep 17 00:00:00 2001 From: Richard Misiak Date: Wed, 31 Jan 2018 23:24:28 +0000 Subject: [PATCH] Delete duplicate example --- content/csharp/getting-started/hello-world.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/content/csharp/getting-started/hello-world.md b/content/csharp/getting-started/hello-world.md index 9c67b48..12ae852 100644 --- a/content/csharp/getting-started/hello-world.md +++ b/content/csharp/getting-started/hello-world.md @@ -10,20 +10,6 @@ A C# program begins with a *Main* method, usually found in a file called *Progra ```{.snippet} using System; -namespace ConsoleApplication -{ - public class Program - { - public static void Main() - { - Console.WriteLine("Hello World!"); - } - } -} -``` -```{.REPL} -using System; - namespace ConsoleApplication { public class Program