Switch to a better language

This commit is contained in:
Xylo 2023-12-01 11:16:23 +01:00
parent 308b569608
commit 0e2bcb4a6d
3 changed files with 13 additions and 6 deletions

2
Program.cs Normal file
View File

@ -0,0 +1,2 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");

11
ci-lab7.csproj Normal file
View File

@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>ci_lab7</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

6
main.c
View File

@ -1,6 +0,0 @@
#include <stdio.h>
int main()
{
printf("Halo, Welt!");
return 0;
}