소스 검색

Add an empty main (for now)

Godzil 4 년 전
부모
커밋
8144e38aa0
1개의 변경된 파일17개의 추가작업 그리고 0개의 파일을 삭제
  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;
+}