mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 01:49:48 +00:00
8 lines
133 B
C++
8 lines
133 B
C++
#include <botan/version.h>
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
std::cout << Botan::short_version_string() << "\n";
|
|
return 0;
|
|
}
|