diff options
Diffstat (limited to 'Aggregator/Main/Program.cs')
-rw-r--r-- | Aggregator/Main/Program.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Aggregator/Main/Program.cs b/Aggregator/Main/Program.cs new file mode 100644 index 0000000..a9c5ed6 --- /dev/null +++ b/Aggregator/Main/Program.cs @@ -0,0 +1,12 @@ +using System;
+
+namespace Main
+{
+ class Program
+ {
+ static void Main(string[] args)
+ {
+ Console.WriteLine("Hello World!");
+ }
+ }
+}
|