Files
basic-computer-games/69_Pizza/csharp/Program.cs
Martin Thoma e64fb6795c MAINT: Apply pre-commit
Remove byte-order-marker pre-commit check as there would be
many adjustments necessary
2022-03-05 09:29:23 +01:00

12 lines
197 B
C#

namespace Pizza
{
internal class Program
{
static void Main(string[] args)
{
var pizzaGame = new PizzaGame();
pizzaGame.Play();
}
}
}