blob: b887e8bf6c010a70aa8446b87d8f01c0dbad1d2f [file] [log] [blame] [edit]
#include <stdio.h>
#include <emscripten.h>
int main() {
printf("hello, world!\n");
int result = EM_ASM_INT({
return Module.sawAsyncCompilation | 0;
});
REPORT_RESULT(result);
return 0;
}