Explorar el Código

Add an empty main (for now)

Godzil hace 4 años
padre
commit
8144e38aa0
Se han modificado 1 ficheros con 17 adiciones y 0 borrados
  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;
+}