mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 09:57:41 +00:00
8 lines
104 B
C++
8 lines
104 B
C++
|
#include <iostream>
|
||
|
|
||
|
int main() {
|
||
|
long v = __cplusplus;
|
||
|
std::cout << v << "\n";
|
||
|
return 0;
|
||
|
}
|