summaryrefslogtreecommitdiffstats
path: root/Exec/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Exec/main.cpp')
-rw-r--r--Exec/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/Exec/main.cpp b/Exec/main.cpp
new file mode 100644
index 0000000..b833214
--- /dev/null
+++ b/Exec/main.cpp
@@ -0,0 +1,9 @@
+#include <iostream>
+#include <StringTools.h>
+
+int main()
+{
+ std::cout << StringTools::Replace("Hello, ${where}!\n", "${where}", "World") << std::endl;
+
+ return 0;
+}