Compare commits
No commits in common. "cpp-basics" and "master" have entirely different histories.
cpp-basics
...
master
4 changed files with 1 additions and 15 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,2 +0,0 @@
|
|||
/cmake-build-debug/**/*
|
||||
/.idea/
|
|
@ -1,6 +0,0 @@
|
|||
cmake_minimum_required(VERSION 3.26)
|
||||
project(Learning)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
|
||||
add_executable(Learning main.cpp)
|
|
@ -1,5 +1,5 @@
|
|||
## Tec Stack
|
||||
Language: `cpp`
|
||||
Language: `lang`
|
||||
Framework: `none`
|
||||
Librarys: `none`
|
||||
|
||||
|
|
6
main.cpp
6
main.cpp
|
@ -1,6 +0,0 @@
|
|||
#include <iostream>
|
||||
|
||||
int main() {
|
||||
std::cout << "Hello, World!" << std::endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in a new issue