mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-25 12:25:10 -08:00
11 lines
196 B
C#
11 lines
196 B
C#
namespace Pizza
|
|
{
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var pizzaGame = new PizzaGame();
|
|
pizzaGame.Play();
|
|
}
|
|
}
|
|
} |