Compare commits

...

3 Commits

Author SHA1 Message Date
cecf73c217 a lot of changes 2025-01-24 01:14:18 +03:00
55baf08975 sum in main.cpp 2025-01-24 00:21:35 +03:00
3178aa58b1
Add cmake config and main.cpp 2025-01-23 23:33:19 +03:00
4 changed files with 21 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.cast

6
CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.27)
project(hw)
set(CMAKE_CXX_STANDARD 17)
add_executable(hw main.cpp)

View File

@ -0,0 +1 @@

13
main.cpp Normal file
View File

@ -0,0 +1,13 @@
#include <stdlib.h>
#include <iostream>
using namespace std;
# Это мейн
int main() {
int a = 1;
int b = 2;
int c = a + b;
return 0;
}