TradingManager/Program.cs

13 lines
157 B
C#
Raw Permalink Normal View History

2017-11-23 19:19:09 +01:00
using System;
namespace TradingManager
{
class MainClass
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}