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