Skip to content
This repository was archived by the owner on Oct 23, 2018. It is now read-only.

Commit 9d81717

Browse files
authored
Merge pull request #1041 from dcorriveau/master
Adding HelloWorld app for Issue #33
2 parents 60e3054 + 724dc71 commit 9d81717

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

C#/Hacktoberfest Hello.cs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
3+
namespace HacktoberfestHello
4+
{
5+
class HelloProgram
6+
{
7+
static void Main(string[] args)
8+
{
9+
Console.WriteLine("Greetings Hacktoberfest " + DateTime.Today.Year + "!");
10+
}
11+
}
12+
}

0 commit comments

Comments
 (0)