Browse Source

Ready. Set. Go!

rexim 5 years ago
commit
1f6dccec41
3 changed files with 11 additions and 0 deletions
  1. 1 0
      .gitignore
  2. 2 0
      Makefile
  3. 8 0
      main.cpp

+ 1 - 0
.gitignore

@@ -0,0 +1 @@
+vodus

+ 2 - 0
Makefile

@@ -0,0 +1,2 @@
+vodus: main.cpp
+	clang++ -Wall -o vodus main.cpp

+ 8 - 0
main.cpp

@@ -0,0 +1,8 @@
+#include <cstdio>
+
+int main(int argc, char *argv[])
+{
+    printf("Hello, Vodus\n");
+
+    return 0;
+}