Revision 21d1e49088fe23cc9b1360b3f46f9a9d8f71184b authored by Alon Zakai on 03 February 2014, 01:37:17 UTC, committed by Alon Zakai on 03 February 2014, 01:37:17 UTC
1 parent 1341770
Raw File
hello_cxx11.cpp
#include <stdio.h>

#if __cplusplus != 201103L
#error This file should be compiled with -std=c++11!
#endif

int main( int argc, const char *argv[] ) {
  printf("Hello world!\\n");
  return 0;
}
back to top