Compare commits

...

3 Commits

Author SHA1 Message Date
0561afcfb4 update README 2025-01-24 01:01:17 +03:00
3b3400d2b5 add diff to main.cpp 2025-01-24 00:24:50 +03:00
3178aa58b1
Add cmake config and main.cpp 2025-01-23 23:33:19 +03:00
3 changed files with 17 additions and 0 deletions

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 @@
Репозиторий для сдачи дз по ОС

10
main.cpp Normal file
View File

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