Initial commit

This commit is contained in:
Arthur-Coppey 2021-03-29 23:02:57 +02:00
commit 536a8a689e
3 changed files with 14 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
# Project exclude paths
/cmake-build-debug/

6
CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.19)
project(qotd C)
set(CMAKE_C_STANDARD 99)
add_executable(qotd main.c)

6
main.c Normal file
View File

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