Browse Source

Add an empty main (for now)

Godzil 4 years ago
parent
commit
8144e38aa0
1 changed files with 17 additions and 0 deletions
  1. 17 0
      source/main.cpp

+ 17 - 0
source/main.cpp

@@ -0,0 +1,17 @@
+/*
+ *  DoRayMe - a quick and dirty Raytracer
+ *
+ *  Main app
+ *
+ *  Created by Manoël Trapier
+ *  Copyright (c) 2020 986-Studio.
+ *
+ */
+#include <stdio.h>
+
+
+int main(int argc, char *argv[])
+{
+    printf("Hello !\n");
+    return 0;
+}