10 lines
180 B
C++
10 lines
180 B
C++
#include <iostream>
|
|
#include <StringTools.h>
|
|
|
|
int main()
|
|
{
|
|
std::cout << StringTools::Replace("Hello, ${where}!\n", "${where}", "World") << std::endl;
|
|
|
|
return 0;
|
|
}
|