aboutsummaryrefslogtreecommitdiff
path: root/Compiler/src
diff options
context:
space:
mode:
Diffstat (limited to 'Compiler/src')
-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;
+}