Buecherwurm/src/Program.cs

13 lines
182 B
C#
Raw Normal View History

2020-04-22 15:11:18 +00:00
using System;
namespace Bücherwurm
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}