commit b5c51f0f7a8dda77d5d6b2de09522d30515d2f87 Author: rhinemann Date: Fri Dec 27 17:32:59 2024 +0200 Initial commit. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..602b07f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea +cmake-build-debug/ \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..f2ace4c --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 3.30) +project(code) + +set(CMAKE_CXX_STANDARD 23) + +add_executable(code main.cpp + sort.cpp + sort.h + stringProcessor.cpp + stringProcessor.h) diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..f253cbe --- /dev/null +++ b/main.cpp @@ -0,0 +1,6 @@ +#include + +int main() { + std::cout << "Hello, World!" << std::endl; + return 0; +} \ No newline at end of file diff --git a/sort.cpp b/sort.cpp new file mode 100644 index 0000000..4229a4d --- /dev/null +++ b/sort.cpp @@ -0,0 +1,5 @@ +// +// Created by rhinemann on 27.12.24. +// + +#include "sort.h" diff --git a/sort.h b/sort.h new file mode 100644 index 0000000..934883c --- /dev/null +++ b/sort.h @@ -0,0 +1,8 @@ +// +// Created by rhinemann on 27.12.24. +// + +#ifndef SORT_H +#define SORT_H + +#endif //SORT_H diff --git a/stringProcessor.cpp b/stringProcessor.cpp new file mode 100644 index 0000000..1a51809 --- /dev/null +++ b/stringProcessor.cpp @@ -0,0 +1,5 @@ +// +// Created by rhinemann on 27.12.24. +// + +#include "stringProcessor.h" diff --git a/stringProcessor.h b/stringProcessor.h new file mode 100644 index 0000000..08d3be8 --- /dev/null +++ b/stringProcessor.h @@ -0,0 +1,8 @@ +// +// Created by rhinemann on 27.12.24. +// + +#ifndef STRINGPROCESSOR_H +#define STRINGPROCESSOR_H + +#endif //STRINGPROCESSOR_H