Buecherwurm/Program.cs

13 lines
193 B
C#
Raw Normal View History

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