dotbot/Program.cs

13 lines
188 B
C#
Raw Normal View History

2017-12-03 19:46:10 +00:00
using System;
namespace dotbot
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}