aboutsummaryrefslogtreecommitdiff
path: root/2
diff options
context:
space:
mode:
Diffstat (limited to '2')
-rw-r--r--2/test/.gitignore1
-rw-r--r--2/test/main.c6
-rw-r--r--2/test/makefile1
3 files changed, 8 insertions, 0 deletions
diff --git a/2/test/.gitignore b/2/test/.gitignore
new file mode 100644
index 0000000..ba2906d
--- /dev/null
+++ b/2/test/.gitignore
@@ -0,0 +1 @@
+main
diff --git a/2/test/main.c b/2/test/main.c
new file mode 100644
index 0000000..04ce434
--- /dev/null
+++ b/2/test/main.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+ printf("Hello world!\n");
+ return 0;
+}
diff --git a/2/test/makefile b/2/test/makefile
new file mode 100644
index 0000000..cd6a8c6
--- /dev/null
+++ b/2/test/makefile
@@ -0,0 +1 @@
+main: main.c