mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
This change moves `examples/example` into `tests/conan` to make it clear it is an integration test, and adjusts the `conan` CI job accordingly
11 lines
185 B
C++
11 lines
185 B
C++
#include <xrpl/protocol/BuildInfo.h>
|
|
|
|
#include <cstdio>
|
|
|
|
int
|
|
main(int argc, char const** argv)
|
|
{
|
|
std::printf("%s\n", ripple::BuildInfo::getVersionString().c_str());
|
|
return 0;
|
|
}
|