Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
binaryen
/
version_17
/
.
/
test
/
wasm_backend
/
hello_num_only.cpp
blob: d272f11c6d97e886a0e9bc3a6f724fb3e265d6dd [
file
] [
log
] [
blame
]
#include
<emscripten.h>
int
main
()
{
int
*
x
=
(
int
*)
8
;
*
x
=
123
;
EM_ASM
({
Module
.
print
(
"hello, world "
+
HEAP32
[
8
>>
2
]
+
"!"
);
});
}