From a16e59737d6d1cd89cd870f872331ec806e22c78 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Sun, 9 Oct 2016 12:18:46 +0300 Subject: Initial commit --- main.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 main.cpp (limited to 'main.cpp') diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..b0846a7 --- /dev/null +++ b/main.cpp @@ -0,0 +1,12 @@ +#include + +int main(int argc, char** argv) { + if (argc < 2) { + std::cout << "Please provide a file path."; + return 1; + } + + std::string filepath(argv[1]); + + return 0; +} -- cgit v1.3