summaryrefslogtreecommitdiffstats
path: root/Src/Exec/main.cpp
diff options
context:
space:
mode:
authorLeonetienne <leonetienne@hotmail.de>2022-02-12 03:07:11 +0100
committerLeonetienne <leonetienne@hotmail.de>2022-02-12 03:07:11 +0100
commita6c9e64eb559a58d31f5ea68b8947f460ed8f04b (patch)
tree0e5789541a3d26e4c0c1bed8a0585be27fc182ec /Src/Exec/main.cpp
parentf4e36ec9af5002eaa51c742faa10e4cbc7d66de0 (diff)
Better directory structure naming
Diffstat (limited to 'Src/Exec/main.cpp')
-rw-r--r--Src/Exec/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/Src/Exec/main.cpp b/Src/Exec/main.cpp
new file mode 100644
index 0000000..4beeed7
--- /dev/null
+++ b/Src/Exec/main.cpp
@@ -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;
+}