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