Create HelloWOrld.cs

This commit is contained in:
Kanishk gupta 2018-10-07 11:08:12 +05:30 committed by GitHub
parent 4da95e9a22
commit f795b1a2db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

10
code/HelloWOrld.cs Normal file
View File

@ -0,0 +1,10 @@
// Hello World! program C#
namespace HelloWorld
{
class Hello {
static void Main(string[] args)
{
System.Console.WriteLine("Hello HacktoberFest!");
}
}
}