mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-22 06:40:53 +00:00
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
11 lines
184 B
C++
11 lines
184 B
C++
#include <xrpl/protocol/BuildInfo.h>
|
|
|
|
#include <cstdio>
|
|
|
|
int
|
|
main(int argc, char const** argv)
|
|
{
|
|
std::printf("%s\n", xrpl::build_info::getVersionString().c_str());
|
|
return 0;
|
|
}
|