Skip to content
This repository has been archived by the owner on Nov 28, 2019. It is now read-only.

WIP - redundancy removed #207

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions content/csharp/getting-started/hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down