Initial commit

This commit is contained in:
2025-10-21 11:41:43 +02:00
commit 6a3e59ffeb
2 changed files with 175 additions and 0 deletions

6
CMakeLists.txt Normal file
View File

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