mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-21 23:00:43 -08:00
Bowling in csharp
This commit is contained in:
16
14_Bowling/csharp/Program.cs
Normal file
16
14_Bowling/csharp/Program.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user