summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorKeuin <[email protected]>2022-04-11 10:07:48 +0800
committerKeuin <[email protected]>2022-04-11 10:07:48 +0800
commit00bfec66319e3e53a3b51d1d1ffbc899633f29a2 (patch)
tree6f2d2a6bf962a9b6d376847b03387d81723e7675 /main.cpp
Basic 3d vector operations. Testing with GoogleTest.
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
new file mode 100644
index 0000000..80cc4b4
--- /dev/null
+++ b/main.cpp
@@ -0,0 +1,9 @@
+/* rt - Threaded ray tracer in C++11.
+ * // TODO
+ */
+#include <iostream>
+
+int main() {
+ std::cout << "Hello, World!" << std::endl;
+ return 0;
+}