Add new file

This commit is contained in:
Andrew Eisenberg
2021-12-07 15:03:01 -08:00
parent d914262770
commit 065c7165e1
+11
View File
@@ -0,0 +1,11 @@
using System;
namespace HelloWorldApp2 {
class Geeks2 {
static void Main2(string[] args) {
if (true) {
Console.WriteLine("Hello World!");
}
}
}
}