aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorzedarider <ymherklotz@gmail.com>2016-12-06 15:11:07 +0000
committerzedarider <ymherklotz@gmail.com>2016-12-06 15:11:07 +0000
commit73ff5968a2dc294514b37006d72daa6070d7250b (patch)
tree17a35883cf41a4f8decdab120981413f18717ecc /src
downloadA-star-algorithm-73ff5968a2dc294514b37006d72daa6070d7250b.tar.gz
A-star-algorithm-73ff5968a2dc294514b37006d72daa6070d7250b.zip
adding main.cpp
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
new file mode 100644
index 0000000..7781db3
--- /dev/null
+++ b/src/main.cpp
@@ -0,0 +1,18 @@
+/*
+
+ description:
+
+ author: Yann Herklotz <ymherklotz@gmail.com>
+ date created: DD-MM-YYYY
+
+ */
+
+#include <iostream>
+
+using namespace std;
+
+int main(int argc, char *argv[]) {
+ cout << "executing " << argv[0] << endl;
+ cout << "arguments given: " << argc-1 << endl;
+ return 0;
+}