Compare commits

..

No commits in common. "cpp-basics" and "master" have entirely different histories.

4 changed files with 1 additions and 15 deletions

2
.gitignore vendored
View file

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

View file

@ -1,6 +0,0 @@
cmake_minimum_required(VERSION 3.26)
project(Learning)
set(CMAKE_CXX_STANDARD 23)
add_executable(Learning main.cpp)

View file

@ -1,5 +1,5 @@
## Tec Stack
Language: `cpp`
Language: `lang`
Framework: `none`
Librarys: `none`

View file

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