Skip to content

Commit

Permalink
[C#] Challenge 0 (Unreviewed) (YearOfProgramming#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrancis2 authored and erocs committed Jan 20, 2017
1 parent 3f71adb commit bb45f0a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
14 changes: 14 additions & 0 deletions challenge_0/csharp/jfrancis2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Challenge 0 - Hello World
###### C#

### 1. Approach to Solving the problem

Output text "Hello World"

### 2. How to compile and run this code

From the /src directory, use `csc.exe hello.cs`

### 3. How this program works

Read the text! Hi :)
13 changes: 13 additions & 0 deletions challenge_0/csharp/jfrancis2/src/hello.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using System;
namespace HelloWorld
{
class Hello
{
static void Main()
{
Console.WriteLine("Hello World!");
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
}

0 comments on commit bb45f0a

Please sign in to comment.