Compare commits

..

No commits in common. "cecf73c217cd3ce33da9f570e7e6d30fdb3a8a07" and "607a74f3bee089658f9686110dae419fe121a2c7" have entirely different histories.

4 changed files with 0 additions and 21 deletions

1
.gitignore vendored
View File

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

View File

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

View File

@ -1 +0,0 @@

View File

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