summaryrefslogtreecommitdiffstats
path: root/Exec/main.cpp
blob: b833214bf0d3a6a6105e91285c588bff3fda7c2f (plain)
1
2
3
4
5
6
7
8
9
#include <iostream>
#include <StringTools.h>

int main()
{
    std::cout << StringTools::Replace("Hello, ${where}!\n", "${where}", "World") << std::endl;

    return 0;
}