Initial commit.

This commit is contained in:
rhinemann 2024-12-27 17:32:59 +02:00
commit b5c51f0f7a
7 changed files with 44 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.idea
cmake-build-debug/

10
CMakeLists.txt Normal file
View File

@ -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)

6
main.cpp Normal file
View File

@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}

5
sort.cpp Normal file
View File

@ -0,0 +1,5 @@
//
// Created by rhinemann on 27.12.24.
//
#include "sort.h"

8
sort.h Normal file
View File

@ -0,0 +1,8 @@
//
// Created by rhinemann on 27.12.24.
//
#ifndef SORT_H
#define SORT_H
#endif //SORT_H

5
stringProcessor.cpp Normal file
View File

@ -0,0 +1,5 @@
//
// Created by rhinemann on 27.12.24.
//
#include "stringProcessor.h"

8
stringProcessor.h Normal file
View File

@ -0,0 +1,8 @@
//
// Created by rhinemann on 27.12.24.
//
#ifndef STRINGPROCESSOR_H
#define STRINGPROCESSOR_H
#endif //STRINGPROCESSOR_H