Better directory structure naming

This commit is contained in:
Leonetienne
2022-02-12 03:07:11 +01:00
parent f4e36ec9af
commit a6c9e64eb5
14 changed files with 2 additions and 2 deletions

9
Src/Exec/main.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <iostream>
#include <StringTools/StringTools.h>
int main()
{
std::cout << StringTools::Replace("Hello, ${where}!\n", "${where}", "World") << std::endl;
return 0;
}