summaryrefslogtreecommitdiffstats
path: root/Exec/main.cpp
blob: bb337a529062f0f05a6c433bda7b76507f13b7a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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;
}