mirror of
https://gitlab.isc.org/isc-projects/kea.git
synced 2025-12-20 00:53:34 +08:00
8 lines
123 B
C++
8 lines
123 B
C++
#include <boost/version.hpp>
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
std::cout << BOOST_LIB_VERSION << "\n";
|
|
return 0;
|
|
}
|