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; +}