Skip to content

Commit 6c9b4ed

Browse files
Merge pull request #149 from silviak/patch-1
Create HelloWorld.cs
2 parents f72248f + 2086c06 commit 6c9b4ed

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Hello World! /HelloWorld.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
3+
namespace Hacktoberfest
4+
{
5+
class Program
6+
{
7+
static void Main(string[] args)
8+
{
9+
Console.WriteLine("Hello World!");
10+
}
11+
}
12+
}

0 commit comments

Comments
 (0)