diff --git a/hw1/CMakeLists.txt b/hw1/CMakeLists.txt new file mode 100644 index 0000000..06448ec --- /dev/null +++ b/hw1/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minimum_required(VERSION 3.25) + +project(hw1 C) + +add_executable(main main.c) \ No newline at end of file diff --git a/hw1/main.c b/hw1/main.c new file mode 100644 index 0000000..cbb0ba4 --- /dev/null +++ b/hw1/main.c @@ -0,0 +1,7 @@ +#include + +int main(void) +{ + printf("Hello, World!"); + return 0; +} \ No newline at end of file