FirstVerCommit

This commit is contained in:
2024-10-15 10:59:59 +05:00
commit 72623ca913
2 changed files with 12 additions and 0 deletions

6
CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.28)
project(Helloworld)
set(CMAKE_CXX_STANDARD 26)
add_executable(Helloworld main.cpp)

6
main.cpp Normal file
View File

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