From f626f6ee54f054efc4a376f6b489ba2ee552dc4e Mon Sep 17 00:00:00 2001 From: Matthias Altmann Date: Fri, 19 Oct 2018 17:23:52 +0200 Subject: [PATCH] WIP - redundancy removed Is one of the two snippets there for a reason? --- 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