From 8c018f42b109be14bbac1830523f4279eaa70290 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Tue, 3 Dec 2024 20:27:10 +0100 Subject: [PATCH] Init day-01 --- 2024/day-01/day-01.pro | 7 +++++++ 2024/day-01/main.cpp | 9 +++++++++ 2 files changed, 16 insertions(+) create mode 100644 2024/day-01/day-01.pro create mode 100644 2024/day-01/main.cpp diff --git a/2024/day-01/day-01.pro b/2024/day-01/day-01.pro new file mode 100644 index 0000000..595bdaa --- /dev/null +++ b/2024/day-01/day-01.pro @@ -0,0 +1,7 @@ +TEMPLATE = app +CONFIG += console c++17 +CONFIG -= app_bundle +CONFIG -= qt + +SOURCES += \ + main.cpp diff --git a/2024/day-01/main.cpp b/2024/day-01/main.cpp new file mode 100644 index 0000000..3129fb9 --- /dev/null +++ b/2024/day-01/main.cpp @@ -0,0 +1,9 @@ +#include + +using namespace std; + +int main() +{ + cout << "Hello World!" << endl; + return 0; +}