mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-21 23:00:43 -08:00
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
13 lines
159 B
C#
13 lines
159 B
C#
using System;
|
|
|
|
namespace Battle
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
new Game().Run();
|
|
}
|
|
}
|
|
}
|