From 8cdfa32c53a09a144e439bf6d4432cbfe4853e0f Mon Sep 17 00:00:00 2001 From: Michal Date: Mon, 25 Nov 2024 10:47:20 +0100 Subject: [PATCH] Make world a better place --- Program.cs | 2 ++ lab7.csproj | 10 ++++++++++ main.c | 7 ------- 3 files changed, 12 insertions(+), 7 deletions(-) create mode 100644 Program.cs create mode 100644 lab7.csproj delete mode 100644 main.c diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..3751555 --- /dev/null +++ b/Program.cs @@ -0,0 +1,2 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!"); diff --git a/lab7.csproj b/lab7.csproj new file mode 100644 index 0000000..2150e37 --- /dev/null +++ b/lab7.csproj @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + + diff --git a/main.c b/main.c deleted file mode 100644 index 99482fb..0000000 --- a/main.c +++ /dev/null @@ -1,7 +0,0 @@ -#include - -int main() -{ - printf("Halo, Welt!"); - return 0; -} \ No newline at end of file