Init day-01

This commit is contained in:
SebastianStork 2024-12-03 20:27:10 +01:00
parent 9e609ef723
commit 8c018f42b1
2 changed files with 16 additions and 0 deletions

7
2024/day-01/day-01.pro Normal file
View file

@ -0,0 +1,7 @@
TEMPLATE = app
CONFIG += console c++17
CONFIG -= app_bundle
CONFIG -= qt
SOURCES += \
main.cpp

9
2024/day-01/main.cpp Normal file
View file

@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
return 0;
}