Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/gl_relocation
/
.
/
tests
/
hello_libcxx_mod2a.cpp
blob: f48ad4fe4a69e0a16328228b2a496ba8a3a31479 [
file
] [
log
] [
blame
] [
edit
]
#include
<iostream>
#include
<emscripten.h>
int
main
()
{
std
::
cout
<<
"hello, world!"
<<
std
::
endl
;
emscripten_jcache_printf
(
"waka %d waka\n"
,
5
);
emscripten_jcache_printf
(
"yet another printf %.2f %d\n"
,
5.5
,
66
);
return
0
;
}