Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
binaryen
/
refs/heads/filesystem
/
.
/
test
/
lld
/
em_asm_pthread.cpp
blob: d327bedf286c302d0d4350bc1ff856a14dffd73c [
file
] [
log
] [
blame
] [
edit
]
// Build with
//
// emcc a.cpp -pthread -s WASM_BIGINT
//
#include
<emscripten.h>
EM_JS
(
void
,
world
,
(),
{
console
.
log
(
"World."
);
});
int
main
()
{
EM_ASM
({
console
.
log
(
"Hello."
);
});
world
();
}