summaryrefslogtreecommitdiffstats
path: root/Exec/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Exec/main.cpp')
-rw-r--r--Exec/main.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/Exec/main.cpp b/Exec/main.cpp
deleted file mode 100644
index ef95632..0000000
--- a/Exec/main.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <iostream>
-#include <StringTools.h>
-
-int main()
-{
- std::vector<std::string> foo =
- StringTools::Split(",,Hello,,lol,,test,,", ",,");
-
- for (const auto& it : foo)
- std::cout << "'" << it << "'" << std::endl;
-
- return 0;
-}