This commit is contained in:
Thomas Schleicher 2024-10-22 13:33:14 +02:00
commit a1a8766f36
3 changed files with 28 additions and 0 deletions

8
src/main.cpp Normal file
View file

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