mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 15:16:33 -08:00
17 lines
274 B
C#
17 lines
274 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bowling
|
|
{
|
|
public static class Program
|
|
{
|
|
public static void Main()
|
|
{
|
|
new Bowling().Play();
|
|
}
|
|
}
|
|
}
|