memgraph/poc/example.cpp
Marko Budiselic 66d56820ac Cleanup of poc/. Only CMakeLists is left because it is reasonable to have a proof of concept folder.
Summary: Cleanup of poc/.

Reviewers: dgleich, mislav.bradac

Reviewed By: mislav.bradac

Subscribers: pullbot, buda

Differential Revision: https://phabricator.memgraph.io/D166
2017-03-23 18:10:37 +01:00

7 lines
115 B
C++

#include <iostream>
int main() {
std::cout << "Proof of concept binary example" << std::endl;
return 0;
}