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

Commit

Permalink
Merge pull request #1041 from dcorriveau/master
Browse files Browse the repository at this point in the history
Adding HelloWorld app for Issue #33
  • Loading branch information
Aniket965 authored Oct 9, 2018
2 parents 60e3054 + 724dc71 commit 9d81717
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions C#/Hacktoberfest Hello.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;

namespace HacktoberfestHello
{
class HelloProgram
{
static void Main(string[] args)
{
Console.WriteLine("Greetings Hacktoberfest " + DateTime.Today.Year + "!");
}
}
}

0 comments on commit 9d81717

Please sign in to comment.