commit 35f896969c0dd1de56cba28b9f3ed5083ee94dd2 Author: T1m0ur Date: Tue Apr 28 00:15:56 2026 +0300 init: setup CLion project and gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..60d4bfa --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea/ +cmake-build-*/ \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..8e311a5 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 4.1) +project(TechArt_Roadmap) + +set(CMAKE_CXX_STANDARD 20) + +add_executable(TechArt_Roadmap main.cpp) diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..3146faf --- /dev/null +++ b/main.cpp @@ -0,0 +1,15 @@ +#include + +// TIP To Run code, press or click the icon in the gutter. +int main() { + // TIP Press when your caret is at the lang variable name to see how CLion can help you rename it. + auto lang = "C++"; + std::cout << "Hello and welcome to " << lang << "!\n"; + + for (int i = 1; i <= 5; i++) { + // TIP Press to start debugging your code. We have set one breakpoint for you, but you can always add more by pressing . + std::cout << "i = " << i << std::endl; + } + + return 0; +} \ No newline at end of file