9 lines
158 B
C++
Raw Permalink Normal View History

2025-03-24 22:14:05 +08:00
#include <iostream>
2025-03-24 22:17:47 +08:00
#include "version.h"
2025-03-24 22:14:05 +08:00
int main()
{
2025-03-24 22:17:47 +08:00
std::cout << VERSION_GIT_COMMIT << std::endl;
2025-03-24 22:14:05 +08:00
std::cout << "Done" << std::endl;
return 0;
}