chore: initial commit

This commit is contained in:
2023-12-02 14:24:37 +01:00
commit 803c3a9806
8 changed files with 1149 additions and 0 deletions

10
CMakeLists.txt Normal file
View File

@@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.26)
project(advent_of_code_2023 C)
set(CMAKE_C_STANDARD 11)
add_executable(advent_of_code_2023 main.c
main.h
day_1.c
array_list.c
array_list.h)