Create project

feature/trainlines-wip
Markus Koch 2020-05-01 16:33:48 +02:00
commit 946eb4cc07
3 changed files with 13 additions and 0 deletions

1
.gitignore vendored 100644
View File

@ -0,0 +1 @@
*.user

5
CMakeLists.txt 100644
View File

@ -0,0 +1,5 @@
cmake_minimum_required(VERSION 3.5)
project(lifo-dijkstraserv LANGUAGES C)
add_executable(lifo-dijkstraserv main.c)

7
main.c 100644
View File

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