This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
short-link-backend/src/main.cpp
Thomas Schleicher a1a8766f36 batman
2024-10-22 13:33:14 +02:00

8 lines
No EOL
168 B
C++

#include <iostream>
#include <boost/version.hpp>
using namespace std;
int main(int argc, char *argv[]) {
cout << "Boost version: " << BOOST_LIB_VERSION << endl;
}