Initial commit.
This commit is contained in:
commit
b5c51f0f7a
|
@ -0,0 +1,2 @@
|
||||||
|
.idea
|
||||||
|
cmake-build-debug/
|
|
@ -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)
|
|
@ -0,0 +1,6 @@
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
std::cout << "Hello, World!" << std::endl;
|
||||||
|
return 0;
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
//
|
||||||
|
// Created by rhinemann on 27.12.24.
|
||||||
|
//
|
||||||
|
|
||||||
|
#include "sort.h"
|
|
@ -0,0 +1,8 @@
|
||||||
|
//
|
||||||
|
// Created by rhinemann on 27.12.24.
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef SORT_H
|
||||||
|
#define SORT_H
|
||||||
|
|
||||||
|
#endif //SORT_H
|
|
@ -0,0 +1,5 @@
|
||||||
|
//
|
||||||
|
// Created by rhinemann on 27.12.24.
|
||||||
|
//
|
||||||
|
|
||||||
|
#include "stringProcessor.h"
|
|
@ -0,0 +1,8 @@
|
||||||
|
//
|
||||||
|
// Created by rhinemann on 27.12.24.
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef STRINGPROCESSOR_H
|
||||||
|
#define STRINGPROCESSOR_H
|
||||||
|
|
||||||
|
#endif //STRINGPROCESSOR_H
|
Loading…
Reference in New Issue