Files
basic-computer-games/14_Bowling/csharp/Program.cs
2022-02-06 10:27:47 -05:00

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();
}
}
}