mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-06-22 14:51:43 -07:00
e64fb6795c
Remove byte-order-marker pre-commit check as there would be many adjustments necessary
12 lines
197 B
C#
12 lines
197 B
C#
namespace Pizza
|
|
{
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var pizzaGame = new PizzaGame();
|
|
pizzaGame.Play();
|
|
}
|
|
}
|
|
}
|