From d4007d11e8adf0e80da02eedd0aabed3748eca38 Mon Sep 17 00:00:00 2001 From: Oleg <tariana.oleg2012@gmail.com> Date: Mon, 25 Sep 2023 23:29:03 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=BD=D0=B8=D1=86=D0=B8=D0=B0=D0=BB?= =?UTF-8?q?=D0=B8=D0=B7=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=20=D1=82=D0=B5?= =?UTF-8?q?=D1=81=D1=82=D0=BE=D0=B2=D1=8B=D0=B9=20=D0=BF=D1=80=D0=BE=D0=B5?= =?UTF-8?q?=D0=BA=D1=82.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 5 +++++ Lab1/hello.c | 8 ++++++++ 2 files changed, 13 insertions(+) create mode 100644 Lab1/hello.c diff --git a/.gitignore b/.gitignore index cd531cf..9c15c14 100644 --- a/.gitignore +++ b/.gitignore @@ -52,3 +52,8 @@ Module.symvers Mkfile.old dkms.conf +# VSCode Folder +**/.vscode + +# Compiled files +*.exe \ No newline at end of file diff --git a/Lab1/hello.c b/Lab1/hello.c new file mode 100644 index 0000000..2fb2659 --- /dev/null +++ b/Lab1/hello.c @@ -0,0 +1,8 @@ +#include <stdio.h> + +int main(void) +{ + printf("Hello world!"); + + return 0; +} \ No newline at end of file