Compare commits

..

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

3 changed files with 0 additions and 17 deletions

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,10 +0,0 @@
#include <stdlib.h>
int main() {
int a = 1;
int b = 2;
int c = a - b;
return 0;
}