Make world a better place

This commit is contained in:
Michal 2024-11-25 10:47:20 +01:00
parent 0c9c3ed32e
commit 8cdfa32c53
3 changed files with 12 additions and 7 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!");

10
lab7.csproj Normal file
View File

@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

7
main.c
View File

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