commit 5e291621efc4c566c4c89777a0b87b14a3a10a6a Author: Stanislaus Cichcoki Date: Sun Mar 9 00:44:38 2025 +0100 initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ae6b19c --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/cmake-build-debug/ +/.idea/ \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..fe7b9dc --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 3.30) +project(Sim_C__) + +set(CMAKE_CXX_STANDARD 26) + +add_executable(Sim_C__ + src/main.cpp +) diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..5ebc812 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,5 @@ +// +// Created by Stani on 09/03/2025. +// + +int main(){}