Compare commits
3 Commits
607a74f3be
...
0561afcfb4
Author | SHA1 | Date | |
---|---|---|---|
0561afcfb4 | |||
3b3400d2b5 | |||
3178aa58b1 |
6
CMakeLists.txt
Normal file
6
CMakeLists.txt
Normal file
@ -0,0 +1,6 @@
|
||||
cmake_minimum_required(VERSION 3.27)
|
||||
project(hw)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
add_executable(hw main.cpp)
|
@ -0,0 +1 @@
|
||||
Репозиторий для сдачи дз по ОС
|
10
main.cpp
Normal file
10
main.cpp
Normal file
@ -0,0 +1,10 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
|
||||
int main() {
|
||||
int a = 1;
|
||||
int b = 2;
|
||||
int c = a - b;
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user