Scaffold day 1
This commit is contained in:
commit
c093e8a4bf
5 changed files with 1058 additions and 0 deletions
2
day1/CMakeLists.txt
Normal file
2
day1/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
add_executable(day1 main.cpp)
|
||||
set_target_properties(day1 PROPERTIES CXX_STANDARD 17 CXX_STANDARD_REQUIRED ON)
|
||||
0
day1/day1_input
Normal file
0
day1/day1_input
Normal file
5
day1/main.cpp
Normal file
5
day1/main.cpp
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#include <iostream>
|
||||
|
||||
int main(int, char**){
|
||||
std::cout << "Hello, from aoc25 day1!\n";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue