From c60e8ec627edf2c4f339f6152354381f1f06c69f Mon Sep 17 00:00:00 2001 From: Marijn Besseling Date: Sat, 16 May 2026 12:38:49 +0200 Subject: init --- ColourFlood/ColourFlood.csproj | 12 ++++++++++++ ColourFlood/Program.cs | 9 +++++++++ 2 files changed, 21 insertions(+) create mode 100644 ColourFlood/ColourFlood.csproj create mode 100644 ColourFlood/Program.cs (limited to 'ColourFlood') diff --git a/ColourFlood/ColourFlood.csproj b/ColourFlood/ColourFlood.csproj new file mode 100644 index 0000000..ee5276c --- /dev/null +++ b/ColourFlood/ColourFlood.csproj @@ -0,0 +1,12 @@ + + + + Exe + net10.0 + enable + enable + true + true + + + diff --git a/ColourFlood/Program.cs b/ColourFlood/Program.cs new file mode 100644 index 0000000..140b88b --- /dev/null +++ b/ColourFlood/Program.cs @@ -0,0 +1,9 @@ +namespace ColourFlood; + +class Program +{ + static void Main(string[] args) + { + Console.WriteLine("Hello, World!"); + } +} \ No newline at end of file -- cgit v1.2.3