Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/export
/
.
/
tests
/
binaryen_async.c
blob: 02a43306d4a8ee0f3a3a8f1b0ebc8bd739833fc1 [
file
] [
log
] [
blame
] [
edit
]
#include
<stdio.h>
#include
<emscripten.h>
int
main
()
{
printf
(
"hello, world!\n"
);
int
result
=
EM_ASM_INT_V
({
return
Module
.
sawAsyncCompilation
|
0
;
});
REPORT_RESULT
();
return
0
;
}