mirror of
https://github.com/Xahau/xahaud.git
synced 2026-06-03 16:56:36 +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;
|
|
}
|