mirror of
https://github.com/neogeek23/Life.git
synced 2026-02-04 02:58:17 +00:00
15 lines
324 B
C#
15 lines
324 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Game_Of_Life___Console{
|
|
class Program{
|
|
static void Main(string[] args){
|
|
Console.WriteLine("Hello World!");
|
|
Console.ReadKey();
|
|
}
|
|
}
|
|
}
|