From e17e84e92d77c5f8fc40ec5bcbc0eb2e9f212dbf Mon Sep 17 00:00:00 2001 From: dx Date: Sat, 23 May 2020 19:35:43 +0100 Subject: +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. --- Compiler/src/main.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Compiler/src/main.cpp (limited to 'Compiler/src/main.cpp') 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 + +using std::cout; +using std::endl; + +int main() +{ + cout << "Hello, world!" << endl; + return 0; +} -- cgit v1.2.3-13-gbd6f