Initial commit

This commit is contained in:
2018-02-22 23:01:00 +01:00
commit 8a754080ba
378 changed files with 2723 additions and 0 deletions

7
1.1-Hello/Hello.cs Normal file
View File

@@ -0,0 +1,7 @@
using System;
class Hello {
public static void Main() {
Console.WriteLine("Hello World in C#!");
}
}