Init commit

This commit is contained in:
2025-10-20 14:27:16 +02:00
commit 8a2d0d41ef
2 changed files with 112 additions and 0 deletions

6
CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 4.0)
project(linked_list C)
set(CMAKE_C_STANDARD 23)
add_executable(linked_list main.c)