[ create a new paste ] login | about

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

DigitalGhost - C++, pasted on Jul 3:
1
2
3
4
5
6
7
#include <iostream>
#include <boost/config.hpp>

int main() {
    std::cout << BOOST_COMPILER << '\n';
    std::cout << 1, 2, 3;
}


Output:
1
2
GNU C++ version 4.1.2
1, 2, 3


Create a new paste based on this one


Comments: