aboutsummaryrefslogtreecommitdiff
path: root/Compiler/src/main.cpp
diff options
context:
space:
mode:
authordx <aryadevchavali1@gmail.com>2020-05-23 19:35:43 +0100
committerdx <aryadevchavali1@gmail.com>2020-05-23 19:35:43 +0100
commite17e84e92d77c5f8fc40ec5bcbc0eb2e9f212dbf (patch)
tree415e8913d8376adf3007d695961c48494dc77bd4 /Compiler/src/main.cpp
parentb363c018c5e1af140563a82ae0bcada3b9a60910 (diff)
downloadmdhtml-e17e84e92d77c5f8fc40ec5bcbc0eb2e9f212dbf.tar.gz
mdhtml-e17e84e92d77c5f8fc40ec5bcbc0eb2e9f212dbf.tar.bz2
mdhtml-e17e84e92d77c5f8fc40ec5bcbc0eb2e9f212dbf.zip
+c++ project
Decision: to increase productivity as well as make implementing new features a bit easier, I've decided to move to C++, which has a standard (and fast) implementation of a regex system. Furthermore, it has a ton of good features that make working with this system easier.
Diffstat (limited to 'Compiler/src/main.cpp')
-rw-r--r--Compiler/src/main.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/Compiler/src/main.cpp b/Compiler/src/main.cpp
new file mode 100644
index 0000000..ac686c3
--- /dev/null
+++ b/Compiler/src/main.cpp
@@ -0,0 +1,10 @@
+#include <iostream>
+
+using std::cout;
+using std::endl;
+
+int main()
+{
+ cout << "Hello, world!" << endl;
+ return 0;
+}