added poco find files

This commit is contained in:
Jonas Zeunert
2019-07-30 21:07:25 +02:00
parent 8078c94a90
commit 91745db9f0
8 changed files with 290 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
#include <iostream>
#include <string>
int main()
{
std::string str = "Try to compile";
std::cout << str << '\n';
return 0;
}