Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/export
/
.
/
tests
/
hello_cxx11.cpp
blob: cfce039a0dc49643178a244bd68c6f141d821507 [
file
] [
log
] [
blame
] [
edit
]
#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
;
}