aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorzedarider <ymherklotz@gmail.com>2016-07-17 00:32:39 +0100
committerzedarider <ymherklotz@gmail.com>2016-07-17 00:32:39 +0100
commit1387ab5a3fba8206d8fa0182749bab792e3f6822 (patch)
treee430c53d3f21c9a3d01163abc69cceafc630be25 /src/main.cpp
downloadCardeval-1387ab5a3fba8206d8fa0182749bab792e3f6822.tar.gz
Cardeval-1387ab5a3fba8206d8fa0182749bab792e3f6822.zip
Adding all the initial files
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
new file mode 100644
index 0000000..8562b2f
--- /dev/null
+++ b/src/main.cpp
@@ -0,0 +1,16 @@
+/*
+
+ description:
+
+ author: Yann Herklotz <ymherklotz@gmail.com>
+ date created: DD-MM-YYYY
+
+ */
+
+#include <iostream>
+
+int main(int argc, char** argv) {
+ std::cout << "executing " << argv[0] << std::endl;
+ std::cout << "arguments given: " << argc-1 << std::endl;
+ return 0;
+}