1
0

Initial Setup

This commit is contained in:
Niklas Birk 2019-12-16 19:12:24 +01:00
parent 5a28113d34
commit 03e21dc0e4
2 changed files with 13 additions and 0 deletions

6
CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.15)
project(Informatikprojekt C)
set(CMAKE_C_STANDARD 11)
add_executable(Informatikprojekt main.c)

7
main.c Normal file
View File

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