File: get-cpp-standard.cc

package info (click to toggle)
isc-kea 3.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 62,036 kB
  • sloc: cpp: 594,791; sh: 26,896; lex: 8,540; yacc: 8,424; python: 1,065; xml: 149; makefile: 39
file content (7 lines) | stat: -rw-r--r-- 104 bytes parent folder | download
1
2
3
4
5
6
7
#include <iostream>

int main() {
    long v = __cplusplus;
    std::cout << v << "\n";
    return 0;
}