mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-24 20:10:15 -08:00
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();
|
|
}
|
|
}
|
|
}
|