second commit
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..a1f9cae
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,2 @@
+hello: hello.c
+	clang -std=c99 -Wall -Wextra -g -o hello hello.c
\ No newline at end of file
diff --git a/hello.c b/hello.c
new file mode 100644
index 0000000..5320c07
--- /dev/null
+++ b/hello.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main(){
+    puts("Hello World");
+    return 0;
+}
\ No newline at end of file
diff --git a/tasks.json b/tasks.json
new file mode 100644
index 0000000..5c46c72
--- /dev/null
+++ b/tasks.json
@@ -0,0 +1,9 @@
+{
+    // See https://go.microsoft.com/fwlink/?LinkId=733558
+    // for the documentation about the tasks.json format
+    "version": "2.0.0",
+    "command": "make",
+    "isShellCommand": true,
+    "args": [],
+    "showOutput": "always" 
+}
\ No newline at end of file