[ create a new paste ] login | about

Link: http://codepad.org/XYulKqP6    [ raw code | output | fork ]

C++, pasted on Dec 28:
1
2
3
4
5
6
7
8
#include <iostream>
#include <boost/version.hpp>
using namespace std;
 
int main()
{
        cout << ( BOOST_VERSION / 100000 ) << "." << ( BOOST_VERSION / 100 % 1000 ) << "." << BOOST_VERSION % 100;
}


Output:
1
1.34.1


Create a new paste based on this one


Comments: