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